Hi,
How do I comment out SQL query in a php page…? for instance,
I tried /*… */ but it doesnt work so I think it must be wrong then?
$sql_query ="
INSERT INTO root_contacts_cfm(
/*
cnt_firstname,
cnt_lastname,
cnt_organisation,
cnt_address,
cnt_postcode,
cnt_telephone,
*/
cnt_email1,
cnt_email2,
cnt_comments,
cnt_key,
cnt_created
)
VALUES (
/*
'$cnt_firstname',
'$cnt_lastname',
'$cnt_organisation',
'$cnt_address',
'$cnt_postcode',
'$cnt_telephone',
*/
'$cnt_email1',
'$cnt_email2',
'$cnt_comments',
'$cnt_key',
NOW()
)
";
many thanks,
Lau