Monthly Archives: July 2009

PHP Tutorial : Validate email address – simple way with filter_var() function

While browsing php.net without any scope I discovered a very cute & nice way to replace the usual regular expression email checking thing. That way is via filter_var() php function which does the things 10 times faster : <?php $email … Continue reading

Posted in Usefull PHP | Tagged , | Leave a comment

PHP Tutorials : Rename a mysql table

If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following: <?php //include db credentials mysql_query(“rename table TheOldName to TheNewName”); ?>

Posted in Php & MySQL | Tagged , , , , | Leave a comment

Seo Tips & Tricks : Get indexed in google very fast

I’ve heard this question too many times to stay without telling this amazing unique seo trick / tip. You may know that doing social bookmarking, forum posting, getting an article to a popular blog, etc. will help getting indexed faster … Continue reading

Posted in Seo Tips & Tricks | Tagged , , , , , | 3 Comments