Call php function from javascript and send parameter - Stack Overflow

I would like to send 'ID' to JS function then send the same ID again from JS function to php

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()

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743634102a4481859.html

相关推荐

  • Call php function from javascript and send parameter - Stack Overflow

    I would like to send 'ID' to JS function then send the same ID again from JS function to php

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信