how to make table in php?help?

  • ultimate11
  • Student
  • Student
  • No Avatar
  • Joined: Feb 02, 2011
  • Posts: 86
  • Status: Offline

Post February 9th, 2011, 2:56 am

guys...how to make table in php....please.. post your codes...
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post February 9th, 2011, 2:56 am

  • spork
  • Brewmaster
  • Silver Member
  • User avatar
  • Joined: Sep 22, 2003
  • Posts: 6134
  • Loc: Seattle, WA
  • Status: Offline

Post February 9th, 2011, 10:16 am

You're going to have to be far more specific with your question. SQL table? HTML table?
The Beer Monocle. Classy.
  • ndeb
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 22, 2011
  • Posts: 8
  • Status: Offline

Post February 22nd, 2011, 5:10 am

I assume that you want to have php display a table to visitors. If my assumption is right, try this:
Code: [ Select ]
<?php
echo "<table width='600' cellpadding='5' cellspacing='5' border='1'>";
//depending on your own parameters of course, but the values must be in single quotes
echo "<tr><td>You can write something here</td><td>You can have another column</td></tr>";
//you can do this for as many rows as you like
echo "</table>";
//this ends your table
?>
  1. <?php
  2. echo "<table width='600' cellpadding='5' cellspacing='5' border='1'>";
  3. //depending on your own parameters of course, but the values must be in single quotes
  4. echo "<tr><td>You can write something here</td><td>You can have another column</td></tr>";
  5. //you can do this for as many rows as you like
  6. echo "</table>";
  7. //this ends your table
  8. ?>

I hope it answers your question. If this is not what you are looking for, then please clarify your question.
  • ultimate11
  • Student
  • Student
  • No Avatar
  • Joined: Feb 02, 2011
  • Posts: 86
  • Status: Offline

Post March 15th, 2011, 7:58 pm

8) yes SQL table..

Post Information

  • Total Posts in this topic: 4 posts
  • Users browsing this forum: No registered users and 154 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.