如何设置PHP action的值

avatar
作者
猴君
阅读量:0

在HTML表单中,可以通过<input><button>元素的formaction属性来设置PHP action的值

  1. 使用<input>元素:
<form method="post">  <label for="name">姓名:</label>  <input type="text" id="name" name="name" required>  <input type="submit" value="提交" formaction="your_php_script.php"> </form> 
  1. 使用<button>元素:
<form method="post">  <label for="name">姓名:</label>  <input type="text" id="name" name="name" required>  <button type="submit" formaction="your_php_script.php">提交</button> </form> 

在这两个示例中,当用户点击提交按钮时,表单数据将被发送到your_php_script.php文件进行处理。请确保将your_php_script.php替换为实际的PHP脚本文件名。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!