最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Call php function from javascript and send parameter - Stack Overflow

programmeradmin1浏览0评论

I would like to send 'ID' to JS function then send the same ID again from JS function to php function. Please tell me what is the wrong in my code!

<script type="text/javascript">
function deleteclient(ID){    //I receive the ID correctly until now!
var x = "<?php deleteclient11('ID');?>";
return false;
}
</script>

<?php
function deleteclient11($x)
{
echo "$x";
}
?>

I would like to send 'ID' to JS function then send the same ID again from JS function to php function. Please tell me what is the wrong in my code!

<script type="text/javascript">
function deleteclient(ID){    //I receive the ID correctly until now!
var x = "<?php deleteclient11('ID');?>";
return false;
}
</script>

<?php
function deleteclient11($x)
{
echo "$x";
}
?>
Share Improve this question asked Oct 3, 2013 at 0:54 AhmedAhmed 3653 gold badges7 silver badges17 bronze badges 4
  • 2 The only wany I know to send data to php from js is AJAX – Emilio Gort Commented Oct 3, 2013 at 0:55
  • 3 Why do so many people seem to think you can just call PHP functions in JavaScript...? – Niet the Dark Absol Commented Oct 3, 2013 at 0:56
  • 3 WHat you are doing here could possibly cause an irreversible rip in the time-space fabric. Try doing some research on AJAX and how to use it with PHP and Javascript. – DevlshOne Commented Oct 3, 2013 at 0:57
  • 1 @DevlshOne Too funny! – francisco.preller Commented Oct 3, 2013 at 1:02
Add a ment  | 

1 Answer 1

Reset to default 8

You need to use AJAX, it's easy with jQuery or another library, so I'll demonstrate with jQuery.

javascript

var deleteClient = function(id) {
    $.ajax({
        url: 'path/to/php/file',
        type: 'POST',
        data: {id:id},
        success: function(data) {
            console.log(data); // Inspect this in your console
        }
    });
};

php file

<?php

    if (isset($_POST['id'])) {

        deleteClient11($_POST['id']);

        function deleteClient11($x) {
           // your business logic
        }

    }

?>

More info: jQuery.ajax()

发布评论

评论列表(0)

  1. 暂无评论