I am converting MySQL table into HTML table using this PHP snippet, and it looks something like this [html]:
/----------------------------------------\
| Name | Subscribed | Duration | <- Column names
|----------------------------------------|
| Bob | 2011-08-20 04:07:01 | 60 |
|----------------------------------------|
| Ben | 2011-08-20 04:07:01 | 260 |
\----------------------------------------/
- How can I output the table without column names? (Name, Subscribed, Duration) So that it starts from Bob.
- Is it possible to convert that date into something like this: August 20, 2011 4:07:01?
- Duration is in seconds, how can I convert it into minutes (Duration (s)/60) in PHP, so that it will show 1 instead of 60 seconds?