Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

my situation is : When I click to my StatusCheck (it has 1 and 0 value) link image it changes to 1 , when i click i need that value 1 will change in my database table ..., i know that this thing does with ajax , how can i do this?

here is my code

<script type="text/javascript">
    $(function () {
        $('.imageCheck').click(function (e) {
            e.preventDefault();
            $(this).find("#bg").attr('src', "/application/admin/img/tick.png");
        });
    });
</script>

                                            <th>Status</th>

                </tr>
            </thead>
            <tbody>
                <?php 
                foreach ($users as $user):

                ?>
                <tr>
                    <td><?=$user['id']?></td>
                    <td>                                                      
  <div class="imageCheck"><img id="bg" src="<?php echo $img_path;?>publish_x.png" name="statusCheck" value="0" />
                                                   </div>                                                     
                                            </td> 
share|improve this question
the question is not clear, please consider restating it. Also the code could be written a bit prettier. – Geo Dec 28 '12 at 22:46

closed as not a real question by Lars Kotthoff, Charles, EdChum, Hogan, CodeNaked Dec 29 '12 at 1:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If I understood you correctly, you want to change a value binded to an image in a database with ajax. To accomplish that, you need to update your jQuery (assuming you are using it) to look like this:

<script type="text/javascript">
    $('.imageCheck').click(function(e){
         e.preventDefault();
         $(this).find("#bg").attr('src',"/application/admin/img/tick.png");  

         var image_id = $('#bg').attr('image_id');

         $.ajax({
             type: "GET",
             url: "filepath_to_a_php_file_or_folder",
             data: {image_id: image_id},
             success:
                 function(data){
                     $('#bg').attr('value', '1');
                }
         });
    });    
</script>

And then the PHP file, which is located at "filepath_to_a_php_file_or_folder":

<?php 
    /** 
    * Your database connection stuff...
    */

    $image_id = $_GET['image_id'];

    /** 
    * Here's an example with basic MySQL, but as you propably know 
    * this can be done with PDO or any other database tool too. 
    */

    $query = mysql_query("UPDATE yourtable SET yourvaluename=1 WHERE image_id=$image_id");

    if($query) exit('Successfully updated!');
?>

Lastly, add an image_id attribute to your #bg image:

<div class="imageCheck">
    <img id="bg" image_id="<?= $image_id ?>" src="<?php echo $img_path;?>publish_x.png" name="statusCheck" value="0" />
 </div>

Of course this requires you to have some kind of identification system on your images (notice the id attribute on the #bg), and the PHP needs a bit more work, but you propably get the point. Hopefully this helps! :)

share|improve this answer
thanks Asapo Kiiso i will apply this things :) – serii Dec 29 '12 at 6:39

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