所以基本上可以說我有稱爲頁頁面與-links.php:PHP:<a>標籤的郵政名稱,然後掛在網頁上使用
<ul>
<li><a href="page-with-checkboxes.php" name="blue">Blue</a></li>
<li><a href="page-with-checkboxes.php" name="red">Red</a></li>
<li><a href="page-with-checkboxes.php" name="green">Green</a></li>
<li><a href="page-with-checkboxes.php" name="yellow">Yellow</a></li>
<li><a href="page-with-checkboxes.php" name="orange">Orange</a></li>
</ul>
和一頁叫做page-with-checkboxes.php:
<h3>You selected:</h3>
<form>
<input type="checkbox" name="blue" />
<label for="blue"> Blue</label><br>
input type="checkbox" name="red" />
<label for="red"> Red</label><br>
input type="checkbox" name="green" />
<label for="green"> Green</label><br>
<input type="checkbox" name="yellow" />
<label for="yellow"> Yellow</label><br>
<input type="checkbox" name="orange" />
<label for="orange"> Orange</label><br>
</form>
我想能夠使用<a>
標籤的名稱值來檢查下一個頁面上的相關框。
例如,如果用戶點擊「綠色」頁面與-links.php,我想用複選框以name="green"
檢查時頁面與-checkboxes.php負載。
我希望我已經清楚了。在此先感謝任何可以幫助的人!
不能得到這個出於某種原因...方法發表@SiwachGaurav偉大的工作,但我更喜歡你的方法,而不是使用多個'$ _GET'請求。任何想法我可能錯過了什麼?請注意,我在一些「輸入」字段中添加了缺失的V形符號,仍然無法使其工作,所以這不是問題。謝謝 – Ross
哦,我錯過了打印功能,請原諒! – Mohebifar