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 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']}"; 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 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
Archived
This topic is now archived and is closed to further replies.