Jump to content

insert not working


matt82

Recommended Posts

Hi guys i am very new to php so any help would be much apreciated

 

the code seems like it should work none of the built in errors are returned but when i look at my mysql db no new entries are added.

 

<html>

<head>

</head>

<body>

 

<?php

include 'library/config.php';

include 'library/opendb.php';

 

 

 

$dbhost = 'localhost';

$dbuser = 'root';

$dbpass = 'w33kDays!';

$dbname = 'advendeals';

 

 

$connnection = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');

return $connection;

 

mysql_select_db($dbname);

 

 

$query = "INSERT INTO clients (ClientID, ClientCountry, ClientState) VALUES ('176', 'Australia', 'queensland')";

 

mysql_query($query) or die('Error, insert query1 failed');

 

$query = "FLUSH PRIVILEGES";

mysql_query($query) or die('Error, insert query2 failed');

 

include 'library/closedb.php';

?>

</body>

</html>

 

thanks in advance for any help.

Link to comment
https://forums.phpfreaks.com/topic/119229-insert-not-working/
Share on other sites

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.