Jump to content

new data problem


MarcusZ

Recommended Posts

Please help I'm quite new to this. I don't get an error message. but when I run a test the database on myphpadmin doesn't recieve the new data. I've checked that the connection is right.

 

mysql_select_db("smsinfo", $con);

$sql = "INSERT INTO `smsinfo`.`history` (
`time` ,
`number` ,
`sms` ,
`price` ,
`smssent`
)
VALUES (NOW(),$nr,$sms,$tariff,1";

mysql_query( $sql, $con);

$affected = mysql_affected_rows($con);


mysql_close($con);


echo 'Vi har nu tagit emot ditt SMS! ' . $affected . '!';

Link to comment
https://forums.phpfreaks.com/topic/192231-new-data-problem/
Share on other sites

Thank you for your reply.

However, the problem remains. I still don't manage to save the data to the db.

I'm very new to this, so the problem might be that I have done a wrong/bad setup or something.

 

This file is published on my filehost, and it should be contacted by another sever with data, which should be passed on and saved to myphpadmin.com. Am I missing something? Is that all I need to do? I havn't installed anything.

 

Link to comment
https://forums.phpfreaks.com/topic/192231-new-data-problem/#findComment-1013338
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.