1
Hi,
I could´t find answer.
I made a script that call some "news module" data.
The problem is about date:
I have something like "1234567890" instead of "19 de fevereiro de 2009".
How can I convert integer to my date format?
I´v found about intvar, strval, but I cound´t discovery how to use it....
$result = mysql_query("SELECT * FROM 3b5s_stories ORDER BY -storyid"); if($row = mysql_fetch_array($result)){
$dada = $row["created"];
echo $dada; // returns "1234567890" instead of "19 de fevereiro de 2009"
...
}
Any help is very welcome!