Jump to content

[SOLVED] help with mysql rows


jamesxg1

Recommended Posts

<table border="1" width="820" cellpadding="5" bgcolor="#ffffff" bordercolor="#808080" style="border-collapse: collapse;" id="BannedUsersTable">
<tr>

<td align="center" width="" bgcolor="#c0c0c0">
Username:
</td>
<td align="center" width="" bgcolor="#c0c0c0">
I.P Address:
</td>
</tr>
<tr>
<?php
$query = mysql_query("SELECT * FROM banip") or die(mysql_error()); 
while ($row = mysql_fetch_object($query)) 
{ 
echo '<td align="center" width="" bgcolor="#c0c0c0">
<a href="admin.php?form=adduser&order=id">$row->username</a>
</td>
<td align="center" width="" bgcolor="#c0c0c0">
<a href="admin.php?form=adduser&order=firstname">$row->IP</a>
</td>';
}
?>
</tr>

 

it isnt displaying the information its displaying

$row->username        $row->IP 

 

and i need to display the info

 

anyone ?

Link to comment
https://forums.phpfreaks.com/topic/151462-solved-help-with-mysql-rows/
Share on other sites

you need to exit single quotes to include a php var like this

echo '<td align="center" width="" bgcolor="#c0c0c0">
<a href="admin.php?form=adduser&order=id">'.$row->username.'</a>
</td>
<td align="center" width="" bgcolor="#c0c0c0">
<a href="admin.php?form=adduser&order=firstname">'.$row->IP.'</a>
</td>';

 

Scott.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.