[PHP] Re: [PHP-DB] Re: [PHP] $_POST in MySQL query issue...
$_POST[elementName], like $elementName > = $_POST[elementName], then continute use your original SQL sentence > when the register_globals was on. Waste (albeit very minor) of variable space. Concat them. Beckman --
[PHP] Re: [PHP-DB] $_POST in MySQL query issue...
use single quotes and concat the variables outside of the quoted line. Better performance, less problems with variables not being expanded correctly. Beckman --