我有這些代碼:爲什麼這個代碼中的變量未定義? - PHP
testing.php
<html>
<head>
<script type="text/javascript">
function copy_data(id){
var a = document.getElementById(id).value;
document.getElementById("copy_to").value=a;
}
</script>
</head>
<body>
<form action="testprocess.php" method="post">
<input type="text" name ="a" id="copy_from" onkeyup="copy_data('copy_from')"/>
<input type="text" value=0 name ="b" id="copy_to"/>
<input type="submit">
</form>
</body>
</html>
testprocess.php
<?php
$test = $_POST['copy_to'];
echo $test;
?>
我得到一個錯誤,說'copy-to'
是一個不確定的變量。你能告訴我爲什麼? 謝謝。
請閱讀如何使用[表單以及如何從PHP表單獲取數據](http://www.tizag.com/phpT/forms.php)。類似的問題已經被問及時間。它們通常最終會過於本地化,因爲手頭的真實問題無法通過所提供的文本進行搜索。 – animuson 2012-02-05 00:48:12