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