Jump to content

proxim

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

proxim's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Something like this? <?php $result = mysql_query("SELECT * FROM tips", $connection); if (!$result) { die("Database query failed: " . mysql_error()); } $render = ' <table id="" border="0" cellpadding="0" cellspacing="0"> <tr> <td>Row 1</td> <td>Row 2</td> </tr> '; while ($row = mysql_fetch_array($result)) { $render .= ' <tr> <td>'.$row[1].'</td> <td>'.$row[2].'</td> </tr> '; } $render .= '</table>'; echo $render; ?> </body> </html> <?php mysql_close($connection); ?>
  2. I stumbled into this place and decided to register and post. I'm working on a simple news system called xNews (How original), coded in PHP and running on a MySQL database. So yeah, that's about it.
×
×
  • 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.