Thx for your reply.
Yes, my wish is well to take all the table content and the start_date column in the timestamp format.
But in this query, i was just assuming to select the start_date column.
I used your correction but i got the same error.
Ok i forgot to remove the * :
Code:
$data = $db->fetchAll ( 'SELECT UNIX_TIMESTAMP(start_date) AS date_unix FROM tournament' );
Is there a way like you said to get the timestamp of a field and the rest of all the fields without naming each other column in the query ?
Thx for your help.
Nicolas