View Single Post
  #34  
Old 09-17-2011, 09:15 PM
SilverDragonTears's Avatar
SilverDragonTears SilverDragonTears is offline
I am your Nemesis.
 
Join Date: Jun 2011
Posts: 1,113
Gender: Female
Credits: 110,900
SilverDragonTears is on a distinguished road
Default

Code:
<center><table>
<th>Nursery<br>

<?php

mysql_connect("localhost", "YOUR-DATABASE-USERNAME", "YOUR-DATABASE-PASSWORD");
mysql_select_db("YOUR-DATABASE") or die(mysql_error());
?>
      <tr>
        <td VALIGN="top" >

<?

// Retrieve all the adopts from the table
$result = mysql_query("SELECT * FROM adopts_owned_adoptables WHERE isfrozen = 'no' LIMIT $start, 50")
or die(mysql_error());  

while($row = mysql_fetch_array( $result )) {
// Print out the contents of the entry
echo "<a href=\"http://YOUR-SITE-URL/levelup.php?id=" .$row['aid'] . "\" target=\"view\"><img src=\"http://YOUR-SITE-URL/get/".$row['aid'].".gif\" title=\"" .$row['owner'] . "\"></a> ";

}
?>
</td>
        </tr> 
        <tr>
        	<td>
<?php 
for($i=1; $i<=$pages; $i++) {
	echo '<a href="?p=' . $i . '">[' . $i . ']</a> ';
}
?>
		</td>
        </tr>
    </table>

<iframe name="view" id="view" scrolling="no"  width="100%" height="600px" frameborder="0">
__________________

Check out SilvaTales

Last edited by SilverDragonTears; 09-17-2011 at 09:18 PM.
Reply With Quote