在PHP中,您可以使用$_GET
和$_POST
超全局?jǐn)?shù)組來接收用戶的輸入。
$userInput = $_GET['inputName'];
$userInput = $_POST['inputName'];
其中,inputName
是您在HTML表單中定義輸入字段的名稱,例如:
<form method="POST" action="yourphpfile.php">
<input type="text" name="inputName">
<input type="submit" value="Submit">
</form>
請注意,接收用戶輸入時應(yīng)進(jìn)行適當(dāng)?shù)尿?yàn)證和防御性編程,以防止安全漏洞,如使用htmlspecialchars
函數(shù)對用戶輸入進(jìn)行轉(zhuǎn)義,以避免XSS攻擊。