Okay, let me give you a part of my tables, which is only the variables I need.
review
rev_id
rev_title
rev_console
rev_exteriorid
outsiders
mem_id
mem_nick
mem_name
Okay, first let me tell you that I have NO CHOICE but having two tables. Now, I need to show up all my reviews so I do this.
Code: Select all
<?php do { ?>
<tr>
<?php
if($couleur == false) {
$couleur = true;
$code = "#585C77";
} else {
$couleur = false;
$code = "#131D36";
}
?>
<td width="43%" bgcolor="<? echo $code; ?>" height="25"><font color="#FFFFFF"><?php echo $row_Edit_Deleteї'rev_title']; ?></font></td>
<td width="20%" bgcolor="<? echo $code; ?>" height="25"><font color="#FFFFFF"><?php echo $row_Edit_Deleteї'rev_console']; ?></font></td>
<td width="27%" bgcolor="<? echo $code; ?>" height="25"><font color="#FFFFFF"> ***************
</font></td>
<td width="10%" bgcolor="<? echo $code; ?>" height="25"><font color="#FFFFFF"><a href="http://www.thevgnation.com/admin/index.php?id=adm_index.php&Mode=view&Option=sel_ed_rev&Revid=<? echo $row_Edit_Deleteї'rev_id']; ?>">Edit</a></center></font>
</td>
<?php } while ($row_Edit_Delete = mysql_fetch_assoc($Edit_Delete)); ?>Thanks in advance.