對不起,有這樣一個問題,但我一直在這方面工作了一段時間,無法弄清楚如何進出php - 特別是當它到達while循環在下面。 Cna有人幫忙嗎?打破和退出php
if (!$_POST){
$display .= '<div class="aptitle">
<h2>Add Product</h2>
</div><!-- aptitle -->
<div class="apsubtitle">
<h3>Step 1 of 6</h3>
</div><!-- apsubtitle -->
<div class="selectcategorytitle">Please select a category for your item</div><!--selectcategorytitle-->
<div class="selectcategory">
<form action="addproducts2.php" method="post" enctype="multipart/form-data" name="step1">
<div class="selected">Category: <select name="category" class="addproductselect" value=" ' . $selectedcategory . ' " id="select">
<option value="0">Select a Category</option>
<?php do { ?>
<option value="<?php echo $categorylist['pk_cat_id'];?>">
<?php echo $categorylist['category']; ?> </option>
<?php } while ($categorylist = mysql_fetch_assoc($category_query)); ?>
</select>
<input name="submit" class="submitbtn" type="submit" value="Next Step" /></div><!--selected -->
</form>
</div><!--selectcategory-->';
}
$ selectedcategory從哪裏來? – baptme
你確定要在這裏使用'do ... while'而不是簡單的'while'嗎?如果'$ categoryList'數組在執行第一次進入時未被設置,將會觸發警告。 –