我有一个带有表单/文本区域的 php,我不想使用按钮将数据发布到其他一些 PHP。
我正在寻找一些 auto_post AJAX 查询,它将用户在文本框中键入的所有数据放入同一 php.ini 中的 $variable 中。
像这样的东西:
<?php
$checkbox.= '<input type="textbox" name="vehicle" value="" />';
echo "$checkbox<br>";
$return = $checkbox;
//$return should have all the data typed by the user
?>