RaitisRR Posted January 24, 2007 Report Share Posted January 24, 2007 Sveiki man kibelite isti neprotu no db kko izvilkt tabulaa luk kur izvelu no db - <?php $result = mysql_query("SELECT * FROM phpbb_forums"); while ($row = mysql_fetch_assoc($result)) { echo $row['forum_name']; echo $row['forum_desc']; } mysql_close($con) ?> bet man vajg to izvadiit shadaa tabulaa - <table width="100%" border="0"> <tr><td>forum_name</td></tr> <tr><td>forum_desc</td></tr> </table> Link to comment Share on other sites More sharing options...
andrisp Posted January 24, 2007 Report Share Posted January 24, 2007 Saliec kopā visu: <table width="100%" border="0"> <?php $result = mysql_query("SELECT * FROM phpbb_forums"); while ($row = mysql_fetch_assoc($result)) { ?> <tr><td><?php echo $row['forum_name']; ?></td></tr> <tr><td><?php echo $row['forum_desc']; ?></td></tr> <?php } mysql_close($con) ?> </table Link to comment Share on other sites More sharing options...
RaitisRR Posted January 24, 2007 Author Report Share Posted January 24, 2007 Tnx Link to comment Share on other sites More sharing options...
Recommended Posts