出于某种原因,我无法让我的表格工作。没有什么太复杂的。我尝试了不同的变化,但没有运气。我也尝试手动填写 value="value",但它仍然无法传递到 $_POST。
变量 $_POST 中的唯一变量是我的提交按钮和我的“欠”单选按钮。
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'];?>" class="asholder">
<div style="float:right">Hidden ID Field: <input type="text" id="userID" value="" style="font-size: 10px; width: 20px;" disabled="disabled" /></div>
<input style="width: 200px" type="text" id="personinput" value="" placeholder="Person" /><br />
<input type="radio" name="owes" value="sUser" placeholder="Who Owe's Who?" /> owes me
<input type="radio" name="owes" value="mUser" /> I owe them <br />
<input style="width: 200px" type="text" id="amount" value="" placeholder="Amount of..." /><br />
<textarea style="width: 200px; height: 50px;" id="comment" value="" placeholder="Comment"></textarea><br />
<button type="submit" name="submit" value="Throw a Ching" id="submit">Throw a Ching</button>
</form>
任何帮助将不胜感激。