Friday, December 19, 2014

Parse Website with PHP

Parse Website with PHP

Parsing website pages is always a challenge for PHP Developers. Parsing is using for retrieving images, scraping websites, crawling, error detection websites, and many other useful purposes. But PHP Simple HTML DOM Parser is a awesome or can say dream library for developer that work with both PHP...

Thursday, October 16, 2014

Install CodeIgniter Framework

Install CodeIgniter Framework

In this post we will cover how to install codeigniter framework and we will view the most common steps to install codeigniter framework. CodeIgniter is one of the most popular PHP frameworks around. It uses the Model-View-Controller Architectural design pattern and it’s considered by lots of PHP developers...

Monday, October 6, 2014

php To PDF

php To PDF

php To PDF is an API based solution. We are a web service providing you the easiest way to generate PDF files from PHP Code. Our server does the heavy lifting and generates the PDFs for you. The generated PDF files will be returned and stored on your server...

Thursday, September 4, 2014

New features in PHP 5.6

New features in PHP 5.6

The PHP development team announced new release of PHP 5.6. The new release brings new features and lots of improvements, development team say, also as some backward incompatible changes. Following are the most important changes in PHP 5.6 release: Constant scalar expressions It is now possible to provide...

Wednesday, September 3, 2014

Using Google PageSpeed Insights API with php

Using Google PageSpeed Insights API with php

In this post we learn how to analyze websites using google pagespeed insights api with PHP. First of all you need to acquire an API key:  1) Go to the Google Developers Console.  2) Select a project, or create a new one.  3) In the sidebar on the...

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: -...

Thursday, July 31, 2014

redirect with HTTP status code in php

redirect with HTTP status code in php

PHP redirect script with all http status code. For further details please look at following code: <?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.com/ */ function movePage($num,$url){ static $http = array ( 100 => "HTTP/1.1 100 Continue", 101 => "HTTP/1.1 101 Switching Protocols", 200 => "HTTP/1.1 200...

Tuesday, July 22, 2014

grab image color php

grab image color php

This PHP class can extract the colors of a given image file. It can read an image in the GIF, JPEG or PNG format and extracts the list of colors that are used in the pixels of the image. The class takes in account a similarity factor to consider...

Friday, July 4, 2014

resize image using php

resize image using php

PHP script can easily allow you to resize image using php class. If you’re looking to resize uploaded images or would want to generate thumbnails from uploaded images, then just try this php class once. It also works on transparent PNG and GIF images. <?php /* Online PHP Examples...

 

© 2014 4everTutorials. All rights resevered.

Back To Top