我想要一個HTML表單,然後使用php將其處理爲函數。將HTML表單處理爲函數
我的index.php
<form action="process.php" method="GET">
<input type="text" name="number">
<br/>
<input type="text" name="age">
<br/>
<button type="submit">Send</button>
</form>
我process.php
<?php
$number = htmlspecialchars($_GET["number"]);
$age = htmlspecialchars($_GET["age"]);
function Math ($number, $age) {
$result = $number + $age;
echo $result;
}
Math();
?>
我不能工作了,爲什麼它不工作?
你爲什麼使用'htmlspecialchars'輸入參數?你只需要用它來輸出到html –
我剛開始使用PHP所以不知道,我想我看到有人這樣做,無論如何感謝更正 – pawelk