Heim >Backend-Entwicklung >PHP-Tutorial >PHP 代码 在下来框判断报错

PHP 代码 在下来框判断报错

WBOY
WBOYOriginal
2016-06-23 14:38:15914Durchsuche

 <th width="61" align="right">账户</th>    <td align="left"><input name="edno" type="text" value="<?php echo $zhanghu; ?>" /></td><!--  上面是正确的 -->	<th width="61" align="right">类型</th>    <td align="left">    	    	<select id="leixing" name="leixing">           <option value=''<?php if('"$leixing"') == ''){echo 'selected="selected"';}?>>全部</option>  <!-- 为什么页面会报错? -->           <option value='1'<?php if('"$leixing"') == '1'){echo 'selected="selected"';}?>>是</option>           <option value='2'<?php if('"$leixing"') == '2'){echo 'selected="selected"';}?>>否</option>        </select>    </td>


回复讨论(解决方案)

 <th width="61" align="right">账户</th>    <td align="left"><input name="edno" type="text" value="<?php echo $zhanghu; ?>" /></td><!--  上面是正确的 -->	<th width="61" align="right">类型</th>    <td align="left">    	    	<select id="leixing" name="leixing">           <option value=''<?php if('"$leixing"') == ''){echo 'selected="selected"';}?>>全部</option>  <!-- 为什么页面会报错? -->           <option value='1'<?php if('"$leixing"') == '1'){echo 'selected="selected"';}?>>是</option>           <option value='2'<?php if('"$leixing"') == '2'){echo 'selected="selected"';}?>>否</option>        </select>    </td>


在线等   大虾们 出来吧!

if($leixing == '')
下面那两个类似

if($leixing == '')
下面那两个类似
----------------------------
Parse error: syntax error, unexpected '==' (T_IS_EQUAL) 
还是报错

你的代码是怎么写的?

<select id="leixing" name="leixing">           <option value=''<?php if($leixing == ''){echo 'selected="selected"';}?>>全部</option>  <!-- 为什么页面会报错? -->           <option value='1'<?php if($leixing == '1'){echo 'selected="selected"';}?>>是</option>           <option value='2'<?php if($leixing == '2'){echo 'selected="selected"';}?>>否</option>        </select>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn