這個簡單代碼中有什麼問題嗎?我試着輸入型重量存儲到一個PHP變量$ W ....嘗試回聲$ W,以檢查它是否已被存儲,但它並沒有顯示任何東西..:P顯示存儲在變量中的輸入文本值
<html>
<head>
<title></title>
</head>
<body>
<form action='' method='POST'>
<label>Enter Weight: </label><input type='text' name="weight">
</form>
<?php
$w=$_POST["weight"];
echo $w;
?>
使用'isset()'或'!empty()'。 [你應該得到一個未定義的指標另行通知。(http://php.net/manual/en/function.error-reporting.php) –
'如果(isset($ _ POST [ 「權重」)){ $ W = $ _ POST [ 「重量」]; echo $ w; '總是檢查並分配! –
可能重複http://stackoverflow.com/questions/4261133/php-notice-undefined-variable-and-notice-undefined-index –