atticus Posted January 18, 2008 Share Posted January 18, 2008 Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in Line error: $sql = "SELECT cat_Id FROM CATEGORY WHERE cat_Name = $_POST['cat_Name']"; entire query: $sql = "SELECT cat_Id FROM CATEGORY WHERE cat_Name = $_POST['cat_Name']"; $query = mysql_query($sql); $row = mysql_fetch_array($query); Something is wrong with WHERE b/c it works w/o it Quote Link to comment https://forums.phpfreaks.com/topic/86577-solved-problem-with-sql-query-t_encapsed/ Share on other sites More sharing options...
teng84 Posted January 18, 2008 Share Posted January 18, 2008 $sql = "SELECT cat_Id FROM CATEGORY WHERE cat_Name = {$_POST['cat_Name']}"; Quote Link to comment https://forums.phpfreaks.com/topic/86577-solved-problem-with-sql-query-t_encapsed/#findComment-442362 Share on other sites More sharing options...
atticus Posted January 18, 2008 Author Share Posted January 18, 2008 ooops, don't know how I missed that...thanks Quote Link to comment https://forums.phpfreaks.com/topic/86577-solved-problem-with-sql-query-t_encapsed/#findComment-442363 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.