Hello guys,
can you please give me some minutes?
I have stuck somewhere, here is the problem:
$all = mysql_fetch_array(mysql_query("SELECT a, b, c, d FROM them WHERE nr='1' "));
From this, I want to print the four values in random order, like:
print '$all[2]';
print '$all[0]';
print '$all[3]';
print '$all[1]';
But whats the way to go there?
Thanks to all!
can you please give me some minutes?
I have stuck somewhere, here is the problem:
$all = mysql_fetch_array(mysql_query("SELECT a, b, c, d FROM them WHERE nr='1' "));
From this, I want to print the four values in random order, like:
print '$all[2]';
print '$all[0]';
print '$all[3]';
print '$all[1]';
But whats the way to go there?
Thanks to all!
Comment