if($_GET["content"] ="foo"){
echo("<h4>foo</h4>");
exit;
}
を動作していない「127.0.0.1/_/index.php?content=fooは、」それは私が
if($_GET["content"] ="picture"){
echo("Picture:<br>");
echo("<img src='./ku~1.jpg'></img>");
exit;
}
を書いた前のコードを出力するようです
ここで問題は何ですか?
'=' vs '==' (3つ以上行く) – Marvin