24.02.2010, 11:59
Hi. I would like to download all data from MySQL and assign them to the appropriate variable. in PHP it would look something like this:
In samp ?
Код:
$query = mysql_query("SELECT * FROM test");
while($row = mysql_fetch_array($query))
{
echo $row['field1']'.<br />'.$row['field2'];
}

