I want to send a value of \"NULL\" to a column in mySQL.
$ParentEventID = \"NULL\"; mysql_query(\"UPDATE events SET ParentEventID = \'$ParentEventID
You are on the right track making "NULL" a string. If you need to set it NULL, then remove the qoutes around $ParentEventID.
"NULL"
NULL
$ParentEventID
mysql_query("UPDATE events SET ParentEventID = $ParentEventID");
However, before doing so make sure that the value of $ParentEventID === NULL.
$ParentEventID === NULL