Re: PHP strings "/' ??
Posted: Sat Aug 08, 2009 6:51 am
to my knowledge, single quotes take up less memory and what you use is a matter of preference. however i know for a fact that executing mysql queries need to be done in double quotes because you use single quotes to define values in mysql:
Code: Select all
mysql_query("INSERT INTO foo VALUES('bar')");