Jump to content

JQuery post to my PHP file to read its variable


vonKristoff

Recommended Posts

Hi there,

Im new here ..

I have been trying for hours to just pass a variable from my HTML to a JQuery post which connects to my PHP file, reading the variable sent in the POST, and updating my database.

 

Basically - my PHP is not getting the variable im sending to it - though it is definitely going as my HTML says so.

 

my HTML click function says:

$.post("setDB.php",{id:$('#myTxt').val()});

my PHP - connects to its DB with its new MySQLi set to $mysqli - says:

 

$id = $_POST['id'];

$query = "INSERT videos SET src = $id";

$result = $mysqli->query($query) or die($mysqli_error($mysqli));

 

ok - but no way is anything working ...... I have no hair left - if anyone else has some spare - please be my guest

Link to comment
Share on other sites

Your MySQLi INSERT query is formatted as an update query, change it from

$id = $_POST['id'];
$query = "INSERT videos SET src = $id";
$result = $mysqli->query($query) or die($mysqli_error($mysqli));

to

$id = (int)$_POST['id'];
$query = "INSERT INTO videos ( $id )";
$result = $mysqli->query($query) or die($mysqli_error($mysqli));

or


$id = (int)$_POST['id'];
$query = "INSERT INTO videos ( id ) VALUES ( $id )";
$result = $mysqli->query($query) or die($mysqli_error($mysqli));

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.