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}
    });
    
    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码