好的,我正在尝试做一些我通常可以在ASP中轻松做的事情但是出于某种原因,尽管阅读文档,我可以弄清楚为什么这个If语句显示我的代码。
我想简单地检索一个查询字符串?fs = success
如果为true,则显示html,如果不执行任何操作。我错在哪里,因为即使没有查询字符串,页面也会显示代码。感谢
if ($_GET['fs'] = 'success') {
echo "<div class='container'><div class='row configureCellSplitBG-ouline color-contrast-yellow text-center'><h3>THANK YOU</h3><p>We have recieved your message and will get back to you soon!</p></div></div>";
}
答案 0 :(得分:1)
Single =设置它,double等于检查值。
http://php.net/manual/en/language.operators.comparison.php
if ($_GET['fs'] == 'success') {