Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$sql = "UPDATE `shows` SET `title` = '$title', `tagline` = '$tagline', `desc` = '$desc' , `img_src = '$imgsrc' WHERE id = $showid";
上記のクエリは機能したくありません。1行目の''でエラーと表示されるmysql_errorを取得します。
私がどこで間違っているのか考えていますか?
あなたはダニを逃しています:
`img_src = '$imgsrc' WHERE id = $showid";
する必要があります:
`img_src` = '$imgsrc' WHERE id = $showid";