简体   繁体   中英

Use PHP + jQuery when click on a button

I have a button on my page :

<button class="play"></button>

When I click on it, it launches the video via jQuery

$('.play').on('click',function(){
    player.play();
});

But I also want to add PHP code to save the user ID in the database when he clicks on that button.

How can I mix PHP & jQuery? I'm not used to Ajax, is it the solution?

Thanks for your help!

add a function:

function add_to_db(user_id){
    $.post('add.php', {userId: user_id}, function(response){
        //do something with the response
        r = JSON.parse(response);
        if (r.status === 'error'){
        //handle the error
        alert(r.message);
        }
    });
});

when you play do the following

$('.play').on('click',function(){
    player.play();
    user_id = //however you chose to set this in the page
    add_to_db(user_id);
});

your add.php:

//perform your db update or insert
//if successful:
$response['status'] = 'success';
//else:
$response['status'] = 'error';
$response['message'] = 'update was not successful';
//look into try/catch blocks for more detailed error messaging.

//then send the response back
echo json_encode($response);

Try using ajax

 $('.play').on('click',function(){
    player.play();
    $.ajax({
      type: "POST",
      url: "some.php",  // your php file name
      data:{id :"id"}, //pass your user id
     success:function(data)
    {
   if(data==true)
    alert("success");
else
  alert("error");
    }
    });
    }

some.php

<?php
$success=false;  //Declare and initialize a variable 

// do your code to update your database
//and check if the database is updated , if so set $success=true

echo $success;


?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM