Nexx Posted June 1, 2006 Share Posted June 1, 2006 [code] <?phpinclude("login.inc.php");mysql_connect($hostname,$username,$password);@mysql_select_db($database) or die( "Unable to select database");$file = file("names.txt");foreach ($file as $names) {//echo just to see its workingecho $names."<br>";mysql_query("INSERT INTO vote (id,name,vote) VALUES (NULL,$names,'')");}mysql_close();?>[/code]Hello,I have a text file which is a list of names, each on its own line. I'm trying to use the above code to take each name and insert it into a mysql database. My problem is, that mysql_query will only take a value if it is a number. If I replace names in the text file with numbers it works perfectly. I have also tried replacing file() with file_get_contents() and exploding it, same problem. I am possitive my database is set up correctly, I tested the same code by replacing $names with actual text and it inserted just fine.As you can probably tell I'm new at this, I appreciate any help that can point me in the right direction here. Link to comment https://forums.phpfreaks.com/topic/10915-solved-file-mysql_query/ Share on other sites More sharing options...
Barand Posted June 1, 2006 Share Posted June 1, 2006 You need quotes round string values.Also, use trim() to remove newline from end of each name[code]foreach ($file as $names) { //echo just to see its working echo $names."<br>"; $names = trim($names);mysql_query("INSERT INTO vote (id,name,vote) VALUES (NULL,'$names','')");}[/code] Link to comment https://forums.phpfreaks.com/topic/10915-solved-file-mysql_query/#findComment-40806 Share on other sites More sharing options...
Nexx Posted June 1, 2006 Author Share Posted June 1, 2006 Thanks, that did the trick. Link to comment https://forums.phpfreaks.com/topic/10915-solved-file-mysql_query/#findComment-41013 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.