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.
<input name="order[]" type="text" class="pole" value="<? echo (($row['theorder']>0)&&($row['theorder']<1000))?$row['theorder']:"";?>" size="8">
我需要将此输入字段放入 php echo 标记中。怎么做?我知道我应该放置一些斜线和点,但不知道在哪里。有人可以帮忙吗?
像这样没有任何斜线或点:
<input name="order[]" type="text" class="pole" value=' <?php $row['theorder']=1; echo (($row['theorder']>0)&&($row['theorder']<1000))?$row['theorder']:""; ?> '/>