Wednesday, April 17, 2013

How to get Facebook Page ID

Just enter this URL in your browser with your page name: http://graph.facebook.com/your_page_name
 
The Page ID is the first item listed.

Friday, April 12, 2013

How to handle single or double quote in SQL query

Use a mysql function in PHP
mysql_real_escape_string();
Example: $cat_name = mysql_real_escape_string($cat_name);