View Single Post
Old 05-03-2009, 11:32 AM   #8 (permalink)
CrazeD
CrazeD's Avatar
 
Wizard Techie

Join Date: Feb 2006

Location: Maine

Posts: 3,688

CrazeD will become famous soon enough

Send a message via AIM to CrazeD Send a message via MSN to CrazeD
Default Re: I need some PHP help! timestamp?

On your display page, please do this:

PHP Code:
while ($row mysqli_fetch_array($sqlMYSQLI_ASSOC)) {
echo 
'Name: '.$row['name'].'<br />Comment: '.$row['comment'].'<br />Date: '.date('M/d/Y h:i A'$row['date']);

$data[] = $row;
}
echo 
'-------<br />';
print_r($data);
echo 
'<br />-------'
And then paste back what it displays.
__________________

Need website help? PM me!
CrazeD is offline