-
Replied To a Post in cant search from multiple tables in database
well my problem is that the last time i tried something different from what i have it failed but it shouldnt have cause i have seen it work fro others … -
Replied To a Post in cant search from multiple tables in database
should i post the whole code for others? or at least my finshed solution? -
Replied To a Post in cant search from multiple tables in database
thanks again for helping, i appreciate all help given :D -
Marked Solved Status for cant search from multiple tables in database
I need help trying to get my mysqli_query() function to work right. I have this so far: $raw_results = mysqli_query($con, "SELECT * FROM numdata WHERE numb='%".$k."%' UNION SELECT * FROM … -
Replied To a Post in cant search from multiple tables in database
i tried that but it still gives me that boolean error, lol i figured this problem out be it a tedious solution, i just had it pass multiple queries for … -
Replied To a Post in cant search from multiple tables in database
I apologize : $raw_results = mysqli_query($con, $query); needs to be: $raw_results = mysqli_multi_query($con, $query); -
Replied To a Post in cant search from multiple tables in database
update, i now know that i need to use mysqli_multi_query but i still have no idea what to do with it, im using this format now: $query = "SELECT * … -
Created cant search from multiple tables in database
I need help trying to get my mysqli_query() function to work right. I have this so far: $raw_results = mysqli_query($con, "SELECT * FROM numdata WHERE numb='%".$k."%' UNION SELECT * FROM … -
Began Watching cant search from multiple tables in database
I need help trying to get my mysqli_query() function to work right. I have this so far: $raw_results = mysqli_query($con, "SELECT * FROM numdata WHERE numb='%".$k."%' UNION SELECT * FROM … -
Marked Solved Status for combine data values from single table into newer values in the same table
Table: numdata id numb 1 123 2 456789 3 123 4 456789 5 123 6 456789 7 123 8 456789 9 123 10 456789 11 123 12 456789 13 123 … -
Replied To a Post in combine data values from single table into newer values in the same table
lol OKAY i got it, i figured out why it was putting the extra 606 in there, i was having it add the query to the table twice, once for … -
Replied To a Post in combine data values from single table into newer values in the same table
sure thing 606,0000000 606,0160158 606,0173557 606,0262530 606,0561177 606,0654393 606,0843095 606,1305858 606,2000192 606,2000735 606,2000753 606,2000902 606,2001473 606,2001688 606,2002053 606,2002109 606,2005516 606,2011277 606,2015371 606,2015668 606,2017779 606,2020017 606,2020068 606,2020090 606,2020094 606,2020103 606,2020149 606,2020188 … -
Replied To a Post in combine data values from single table into newer values in the same table
i tried taking one loop out but im still getting this: Column count doesn't match value count at row 1 -
Replied To a Post in combine data values from single table into newer values in the same table
OKAY! so i am so very close to the desired output thanks to your scripts, i took some of what you did and amde it work with mine but im … -
Replied To a Post in combine data values from single table into newer values in the same table
i see how u set up that file, unfortunatly i can skip these numbers i need it to be one whole number example: 123 456789 becomes 123456789 is there any … -
Replied To a Post in combine data values from single table into newer values in the same table
yes that my main issue, i figured the problem wasnt very big but i have no idea how to go about fixing this issue. also sorry for the late responce, … -
Replied To a Post in combine data values from single table into newer values in the same table
well i was actually thinking of that very idea, but i cant create a new table for this. I need to be able to take the values put them together … -
Replied To a Post in combine data values from single table into newer values in the same table
well this is a little of both if that makes any sense, its a php question because i wanted to know if the solution was doable with php but also … -
Created combine data values from single table into newer values in the same table
Table: numdata id numb 1 123 2 456789 3 123 4 456789 5 123 6 456789 7 123 8 456789 9 123 10 456789 11 123 12 456789 13 123 … -
Began Watching combine data values from single table into newer values in the same table
Table: numdata id numb 1 123 2 456789 3 123 4 456789 5 123 6 456789 7 123 8 456789 9 123 10 456789 11 123 12 456789 13 123 … -
Marked Solved Status for Cant get text file contents to show up in mysql database
I am unable to get my text file data.txt to read correctly into my database. This is what my text file looks like 9889483782,6068378394,6069437364... and so on for like 50 … -
Replied To a Post in Cant get text file contents to show up in mysql database
nvm it was a linux issue, its working fine now but its slow as christmas lol ty u so much for all the help i ended up changing the permission … -
Replied To a Post in Cant get text file contents to show up in mysql database
ok now here is something interesting, im getting the strangest error with my completed program, i admit my test file data.txt was for testing purposes but now im using the … -
Replied To a Post in Cant get text file contents to show up in mysql database
OMG it works :D now there is one more little part id like help with if you would be so kind. The part of my file that is in html … -
Replied To a Post in Cant get text file contents to show up in mysql database
here is the upload.php ?php require ('dbconnect.php'); // connect to database // initial database stuff $file = "data.txt"; $file_handle = fopen($file, "r"); mysql_query("TRUNCATE TABLE Numbers") or die("MySQL Error: " . … -
Replied To a Post in Cant get text file contents to show up in mysql database
i mean i dont really need to since there is only comma seperated data in my file but someone i know told me it was good practice to clean my … -
Replied To a Post in Cant get text file contents to show up in mysql database
i think this is it. -
Replied To a Post in Cant get text file contents to show up in mysql database
well i checked the database issue but i didnt get far :( here is the dbconnect.php <?php $host = "*****"; // the host your database server is on, probably localhost … -
Replied To a Post in Cant get text file contents to show up in mysql database
TYSM now im actually getting some errors, however its saying now that my table doesnt exist? here is the error. Warning: Invalid argument supplied for foreach() in /opt/lampp/htdocs/upload/upload.php on line … -
Created Cant get text file contents to show up in mysql database
I am unable to get my text file data.txt to read correctly into my database. This is what my text file looks like 9889483782,6068378394,6069437364... and so on for like 50 … -
Began Watching Cant get text file contents to show up in mysql database
I am unable to get my text file data.txt to read correctly into my database. This is what my text file looks like 9889483782,6068378394,6069437364... and so on for like 50 …
The End.