fatsky 发表于 2023-3-21 16:59:10

PHP提交数据给当前页面

<body>

<form method="post">

Enter Data to encode: <input type="text" name="encode" value="<?php echo htmlspecialchars($_POST['encode']); ?>" /><br />
<input type="submit" value="Encode" name="submit" />

</form>

页: [1]
查看完整版本: PHP提交数据给当前页面