Hi.
Im using mysql with PHP, I was just wondering if this query,
$query = "UPDATE tblName SET field='$fieldValue' WHERE field2='$fieldValue2'"would cause an Out of Memory Error in mysql. Will this query,
$query = "UPDATE tblName SET field='".$fieldValue."' WHERE field2='".$fieldValue2."'"consume less memory than the previous one?
Im getting this error: Out of memory (Needed nnnnnnn bytes) and its pointing to the query with the same format as the first one above.
Thanks.