What placeholders can I use for mysql queries.
Scott used:
$sql =
'INSERT INTO ^edit_history (postid, updated, title, content, tags, userid, reason) ' .
'VALUES (#, NOW(), $, $, $, #, $)';
Is #, $, $, $, #, $ arbitrary or does it have a meaning?
What placeholders can I use else?