Jump to content

Problems updating the database


niza

Recommended Posts

[code]$connection = mysql_connect($host, $user,$password)
or die ("Couldn't connect to server.");
$db = mysql_select_db($database, $connection)
or die ("Couldn't select database.");
$sql = "UPDATE ad SET adName='$adName', adInfo='$adInfo', adPrice='$adPrice' WHERE adID='21'";
$result = mysql_query($sql) or die("Couldn't modify database.");
mysql_close($connection); [/code]

This is the error I get: Couldn't modify database. Anyone knows what is happening and why I cannot update the database?

I checked all tables in the database for spelling mistakes and the variables. But I found no mistakes.
Link to comment
https://forums.phpfreaks.com/topic/7428-problems-updating-the-database/
Share on other sites

Never mind. The variables were not being passes. I used this to get the variables:

$adName = $_POST['adName'];
$adInfo = $_POST['adInfo'];

And now it works.

Is there any way I can get the variables through a loop or something rather then manually give each variable a value?

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.