Thursday, January 10, 2013

PHP Snippets


How to get domain without www/subdomains using php


<?php
     $host = $_SERVER['HTTP_HOST'];
     preg_match("/[^\.\/]+\.[^\.\/]+$/",$host,$matches);
     echo "domain name is :{$matches[0]}\n"};
?>




Wednesday, December 12, 2012

12/12/12

I am writing new post today inorder to preserve precious date which you can see after decade..

I am reading articles since morning 12/12/12 since morning and was bit surprised by count of 75k couples got married in america.

I got some good news in the morning that she is expecting a baby soon which is unplanned and unexpected joy.

PHP Tricks

How to Resize Image size

http://www.sitepoint.com/image-resizing-php/

http://stackoverflow.com/questions/138313/how-to-extract-img-src-title-and-alt-from-html-using-php
http://stackoverflow.com/questions/9865130/getting-image-url-from-rss-feed-using-simplepie

Friday, December 7, 2012