GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   need some PHP/mysql help please (https://gfy.com/showthread.php?t=97781)

psyko514 01-04-2003 03:35 AM

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

Alky 01-04-2003 03:48 AM

im a little tired, but im guessing you just want it random instead of php pulling it with the same format everytime... if so use this:

PHP Code:

$result = @mysql_query("SELECT * FROM $TableName WHERE approved = 'Y' order by rand()");
  while ( 
$row mysql_fetch_array($result) ) {
    
$i++;
    echo 
"<td><a href=gallery.php?id=$row[id]>$row[name]</a>\n";</td>n";
    if ((
$i % 5) == 0) { echo "</tr><tr>n" ; } 


psyko514 01-04-2003 03:52 AM

perfect! thanks dude!
your cookie is on it's way.

Alky 01-04-2003 03:53 AM

thanks, i am kinda hungry


All times are GMT -7. The time now is 07:16 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123