-3
votes
Best way to stop SQL Injection in PHP
I would say something like this in addition to mysql_real_escape_string():
<?php
// Quote variable to make safe
function quote_smart($value)
{
// Stripslashes
if (get_mag …
2
votes
0
votes
lastInsertId from a bulk insert?
If you used a datetime instead of just a date you could lookup the inserted id based on the user and the datetime values, but it is probably better so just not do a bulk insert if you need that dat …
