12.08.2012, 21:35
Hello, i have a problem to dispay a result sql with FROM_UNIXTIME
My code
And when i want to display this result sql
He dont display, he display an empty code or he display "Unban: d m Y H i"
Thx for your help and sorry my english is bad
My code
PHP код:
stock GetDateUnban(timestamp)
{
new query[128];
format(query, sizeof(query),"SELECT FROM_UNIXTIME(%d,'%d %m %Y %H:%I' )",timestamp);
mysql_query(query);
mysql_store_result();
new result[15];
mysql_fetch_row(result);
mysql_free_result();
return result;
}
PHP код:
format(string, sizeof(string), "Unban : %s",GetDateUnban(1344800906));
ShowPlayerDialog(playerid,MESSAGE,DIALOG_STYLE_MSGBOX,"Unban Test",string,"OK","Close");
Thx for your help and sorry my english is bad

