Am a noob so hope you can help!

I've got the following jquery code:

$("#single-home-container").html(post_id);

It then displays the value I want within the HTML on the page:

<div id="single-home-container"></div>

What I would like is to pass the value into a PHP variable to I can use the info in a MySQL query. How do I do so? It's in WordPress so no separate files

Thanks

link|improve this question
Super vague, what the heck is in post_id? What are you passing over to PHP? – David Nguyen Feb 2 at 16:58
feedback

2 Answers

You'd need to use ajax. Something like this:

JQuery:

$('.locationID').click(function(){ 
    var post_id = $(this).attr('rel'),
        $container = $("#single-home-container");
        old_html = $container.html();

    $container.html('loading...');
    $.ajax({
        url : '/path/to/php/file.php',
        data:{"post_id":post_id},
        type: 'post',
        dataType: 'json',
        success: function(data){
            $container.html(data.postBody);
        },
        error: function(data){
            // possibly notify the user of the error
            $container.html(old_html);
        }
    });
});

That assumes you have a field in your posts table called postBody

PHP

<?php
    header('Content-type: application/json');
    // $query_result = do mysql query with $_POST['post_id']
    echo json_encode($query_result);
    exit();
?>

That assumes that you want all the fields and you're returning all the fields, including postBody - and of course you have PHP 5.2.6+ or whatever version they added json_encode().

link|improve this answer
Thanks for the replies. Am not sure how I would use that though. Is there an easier way? Lol – Ian Jarvis Feb 2 at 17:04
That part is up to you :) – AlienWebguy Feb 2 at 17:05
This is my code <script> $(document).ready(function(){ $.ajaxSetup({cache:false}); $(".locationID").click(function(){ var post_id = $(this).attr("rel"); $("#container").html("loading..."); $("#container").html(post_id); return false; }); }); </script> not sure if that helps? – Ian Jarvis Feb 2 at 17:07
Updated, see if that's what you needed. – AlienWebguy Feb 2 at 17:15
With regards to url : '/path/to/php/file.php', as it's a wordpress template and therefore is all in one, do I need this or is there a way to get around it? Similarly, to call it on the page, would i then only need echo json_encode($query_result); Thanks again – Ian Jarvis Feb 2 at 17:18
show 3 more comments
feedback

You can use jQuery.post() or jQuery.ajax().

Here some examples:

<script>
    $.post("test.php", { "func": "getNameAndTime" },
     function(data){
       console.log(data.name); // John
       console.log(data.time); //  2pm
     }, "json");
</script>

<script>
$.ajax({
  url: "test.html",
  context: document.body,
  success: function(){
    $(this).addClass("done");
  }
});
</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.