Ben SQL veri çekme, ve daha sonra bir metin dosyasına yazmaya çalışıyorum. Bu yaptığı, bu metin dosyası üzerinde bir ölçüde, but it only pulls 1 from the table, which reads test:test<br>
strong>.
I want to be able to pull all the data from the table, and then post to the text file in a list format such as this...
test:test
test2:test2
test3:test3
Ben yanlış ne yapıyorum bulmak gerekir.
<?php
$sql = mysql_query("SELECT * FROM _$setprofile ORDER BY fc DESC");
while($row = mysql_fetch_array($sql)){
$user = $row['user'];
$pass = $row['pass'];
$accounts = "$user:$pass<br>";
//Functionsss!
$file = "backups/$newcode.txt";
file_put_contents($file, $accounts);
}
echo "<a href=backups/$newcode.txt>TEST!</a>";
?>