douyi3760 2014-04-28 01:09
浏览 30
已采纳

使用ajax调用一个简单的PHP函数[关闭]

How can i call a php function with a query inside on ajax?

My html:

<input type="submit" value="Open Process" name="openProcess" id="openProcess" onclick="javascript:applicationOpenProcess()" >

And my php function:

function openProcess(){
    $id = $_GET['application']; //Nodata need where is coming from the URL
    $openProcess = "UPDATE applications SET  process='1' WHERE application_id='".$id."'";
    $valProcess = db_query($openProcess, "+"); //function to execute query
}

Guys i really need help on this one Thanks mates

  • 写回答

4条回答 默认 最新

  • duanjing3656 2014-04-28 01:56
    关注

    Check this other answer: jQuery Ajax POST example with PHP

    as lampdev wrote above, you'll just need to adapt the basic aJax call to your code

     $.ajax({
            type: 'POST',
            url:"code.php",
            dataType:'json',
            success: function () { }
    });
    

    The other answer will help you doing what you want, and it's great for ajax beginners

    You'll need 3 files, supposing you've js in a different file as the form. It will be something like:

    • form.php/html
    • script.js
    • code.php
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥40 selenium访问信用中国
  • ¥15 电视大赛投票系统的c语言代码怎么做
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
  • ¥15 软件冲突问题,软件残留问题
  • ¥30 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥50 有没有人会写hLDA,有偿求写,我有一个文档,想通过hLDA得出这个文档的层次主题,有偿有偿!
  • ¥15 alpha101因子里哪些适合crypto?
  • ¥15 ctrl win alt 键一直触发
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部