2009-11-21 44 views
0

我有一個論壇用戶填寫了2個單獨的單選按鈕類別,他們可以填寫。

Permissions: private <input type="radio" name="permissions" value="private" /> public <input type="radio" name="permissions" value="public"/><br /> 

Category: default <input type="radio" name="cat" value"default" /> sport <input type="radio" name="cat" value"sport" />school <input type="radio" name="cat" value"school" />geeky <input type="radio" name="cat" value"geeky" />misc <input type="radio" name="cat" value"misc" /> funny <input type="radio" name="cat" value"funny" /><br /> 

出於某種原因,貓類沒有顯示在$ _ POST [「貓」]了;你只能有一套單選按鈕嗎?

回答

2

確保這些字段在<form></form>標記內。

4

你有一些mistypings。

值「default」應該是value =「default」。與整個第二行代碼相同。屬性和值之間沒有等號(=)。

快速提示:請勿將所有<input />標籤放在同一行上。他們仍然會顯示在網頁的同一行上,但在文本編輯器中編輯會更容易。說到這一點,如果你有一個語法高亮的文本編輯器,你可能會發現這個問題。我建議Notepad++Geany

Category: 
default <input type="radio" name="cat" value="default" /> 
sport <input type="radio" name="cat" value="sport" /> 
school <input type="radio" name="cat" value="school" /> 
geeky <input type="radio" name="cat" value="geeky" /> 
misc <input type="radio" name="cat" value="misc" /> 
funny <input type="radio" name="cat" value="funny" />