在HTML表單中,可以通過<input>
或<button>
元素的formaction
屬性來設置PHP action的值
<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>
<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腳本文件名。