Robski Posted October 9, 2006 Share Posted October 9, 2006 This code works fine on my computers' server but when I copy it over to my web space it doesn't:$name = 'Random';$password = 'passRandom';$query = "INSERT INTO Names (name,password) VALUES ('$name','$password')";mysql_query($query) or die ('Error, insert query failed');- I can get it to pass strings into the database...just not variables.- I've emailed my web hosting people and they said I can use the syntax:$query = "INSERT INTO Names (name,password) VALUES (' ".$name." '.' ".$password." ' )"But this doen't work either.Any Ideas? Link to comment https://forums.phpfreaks.com/topic/23421-help-passing-variables-into-an-insert-query/ Share on other sites More sharing options...
Robski Posted October 9, 2006 Author Share Posted October 9, 2006 No worries.....sorted it out....Auto Increment didn't pass over to the online database when I imported my tables Link to comment https://forums.phpfreaks.com/topic/23421-help-passing-variables-into-an-insert-query/#findComment-106280 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.