$stmt = $dbh->prepare("SELECT FROM menulist_tbl WHERE menulist_id=:MENUID");
$stmt->bindValue(':MENUID',$menuid,PDO::PARAM_STR);
$stmt->execute();
$selected_row = $stmt->fetch(PDO::FETCH_ASSOC);
i have this is select statement but i get syntax error or access violation 1064
in line 471 which is the line $stmt->execute();
i cant see the error because i am using this same statement before but i dont get error i am wondering why i get it now