Luis Lebron wrote:
If I use the following query string it does not work
$query="Select * from users where userid='$_POST['userid']'";
Use curly braces to eval array elements inside of a string
$query = "SELECT * FROM users WHERE userid='{$_POST['userid']}'";
--
By-Tor.com
It's all about th
--- Luis Lebron <[EMAIL PROTECTED]> wrote:
> $query="Select * from users where userid='$_POST['userid']'";
Use curly braces:
$query = "select * from users where userid = '{$_POST['userid']}'";
Hope that helps.
Chris
=
My Blog
http://shiflett.org/
HTTP Developer's Handbook
http://
2 matches
Mail list logo