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']:""; ?> '/>