Friday, August 29, 2014

php linkedin company search and group search

php linkedin company search and group search

Hello programmers, here is simple php code to extract companies and groups details which has linkedin profile. You need only pass search keyword in URL for companies or groups to get their details. It will return a JSON response with id, head line, logo url, displayname, subline, profile...

Saturday, August 23, 2014

php capture website screenshot script

php capture website screenshot script

In this post we learn how to take websites screenshots very easily in PHP using Grabz.it 's API. First of all you need to create grabz.it account  to get API keys (APPLICATION KEY and APPLICATION SECRET) . Replace "APPLICATION KEY", "APPLICATION SECRET" with the values from your account. The...

Wednesday, August 20, 2014

php image data uri

php image data uri

To create data uri in php, read image (png, gif, jpg) file with file_get_contents and convert it to base64 using base64_encode. Using Data URIs you can reduce network requests. But, Please keep in mind if you plan on using data URIs, they are not supported by ie7 and lower....
best method to encrypt or decrypt in php

best method to encrypt or decrypt in php

Here is a safe encrypt and decrypt function for php developer. You can Encrypt and Decrypt using md5. The md5() function calculates the MD5 hash of a string. md5() and sha1() provides the same functinality of encryption in php but they differ in a simple way that md5() generates...

Monday, August 11, 2014

get country from alpha-2 code in php

get country from alpha-2 code in php

ISO 3166-1 alpha-2 codes are two-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest. In this post we use php to get country name from alpha-2...
Create sitemap.xml.gz using PHP

Create sitemap.xml.gz using PHP

In this in post we learn how to generate compressed XML sitemap with php. If some reason Apache does not support gzipping - old version, modules not enabled etc, you can use PHP to generate the compressed XML sitemap. PHP comes with a module of its own to generate...

Wednesday, August 6, 2014

extract meta tag content in php

extract meta tag content in php

In last post we add script about grab webpage title tag and description , keywords meta tag content. But now this post we explain that how programmer can extract all the meta tags information from specific webpage with get_meta_tags and returns an array.  <?php /* Online PHP Examples with...

Monday, August 4, 2014

get title, meta tags info in php

get title, meta tags info in php

This php script grab title tag and description, keywords meta of specified url with simple php curl function. And show all information in title tag , meta description and meta keywords tags. <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.com/ */ function file_get_contents_curl($url) { $ch = curl_init();...

Friday, August 1, 2014

manage email accounts using cPanel API in php

manage email accounts using cPanel API in php

In this blog post we learn how php class can create and manage email accounts using the cPanel API. It can send HTTP requests to the cPanel API of a hosting account to perform several types of operations to manage email accounts. Currently this class has following functions: -...

 

© 2014 4everTutorials. All rights resevered.

Back To Top