Jump to content

Help converting string to date


Pal

Recommended Posts

You mean something like this?

 

<?php
$query = mysql_query("SELECT * FROM date_table");

while ($row = mysql_fetch_assoc($query))
{
$day = $row['day'];
$month = $row['month'];
            $year = $row['year'];
}

echo $day ."/". $month ."/". $year ."<br />".;
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.