View Single Post
Old 01-04-2003, 03:35 AM  
psyko514
See sig. Join Epic Cash.
 
Join Date: Oct 2002
Location: Montreal, Quebec. ICQ: 214702014
Posts: 22,366
need some PHP/mysql help please

I have database of a bunch of different galleries. I'm displaying links to these galleries in a table with the following code:
PHP Code:
  $result = @mysql_query("SELECT * FROM $TableName WHERE approved = 'Y'");
  while ( 
$row mysql_fetch_array($result) ) {
    
$i++;
    echo 
"<td><a href=gallery.php?id=$row[id]>$row[name]</a><br>\n";</td>\n";
    if ((
$i % 5) == 0) { echo "</tr><tr>\n" ; } 
i would like the table to have a different layout everytime it's loaded (i want the cells to be switched around)

i've been racking my brain on this, and the only way i can think of is to select a random starting point in the database (which i have no idea how to do, or if it's possible)
unless it's possible to rearrange an array.

any help would be appreciated... just give me a shove in the right direction.
if you want to write the code for me, i'll give you a cookie ;)
thanks

Last edited by psyko514; 01-04-2003 at 03:38 AM..
psyko514 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote