weixin_33688840 2017-12-25 23:19 采纳率: 0%
浏览 11

简单的Ajax PHP提交表单

How do you use ajax to submit form contents to a txt file.

<input id="form" placeholder="fill out this" type="text">
<button>Submit</button>

ajax

<script>

$('button').click(function (){
var food = $('#form').val();
 $.ajax({
            url:'form.php',
            type:'POST',
            data: food,


        });
});

</script>

form.php

<?php
    error_reporting(E_ALL);
    $data = $_POST['food'];
    $f = fopen('filehere.txt', 'w+');
    fwrite($f, $data);
    fclose($f);
?>

the txt file keeps coming up blank

  • 写回答

2条回答 默认 最新

  • weixin_33674976 2017-12-25 23:42
    关注

    AJAX call with wrong type, you have to send an object.

    $.ajax({
        url:'test.php',
        type:'POST',
        data: {food: food}
    });
    
    评论

报告相同问题?