Php 检索查询并在 If 语句中使用
Php retrieve query and use in If statment
好的,我正在尝试做一些我通常可以在 ASP 中轻松完成的事情,但出于某种原因,尽管阅读了文档,我还是可以弄清楚为什么这个 If 语句显示我的代码.
我正在尝试简单地检索查询字符串 ?fs=success
IF 为真则显示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>";
}
单=设置它,双等于检查值。
http://php.net/manual/en/language.operators.comparison.php
if ($_GET['fs'] == 'success') {
好的,我正在尝试做一些我通常可以在 ASP 中轻松完成的事情,但出于某种原因,尽管阅读了文档,我还是可以弄清楚为什么这个 If 语句显示我的代码.
我正在尝试简单地检索查询字符串 ?fs=success
IF 为真则显示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>";
}
单=设置它,双等于检查值。
http://php.net/manual/en/language.operators.comparison.php
if ($_GET['fs'] == 'success') {