Yeah im using the free one but what is the Php code to show the Admin email? like it would be <? (admin email) > or somthing?

Yeah im using the free one but what is the Php code to show the Admin email? like it would be <? (admin email) > or somthing?
Make your own code for it?
andPHP Code:$admin = mysql_query("SELECT * from users WHERE whatevertheformforuserlevelis = 'admin' order by `id` asc limit 1;");
$admin = mysql_fetch_array($admin);
PHP Code:<? echo("$admin[email]"); ?>
Last edited by DeejayMachoo$; 15-03-2008 at 09:30 AM.
Should just make your own really. "/
alsoPHP Code:$admin = mysql_query("SELECT * from users WHERE whatevertheformforuserlevelis = 'admin' order by `id` asc limit 1;");
$admin = mysql_fetch_array($admin);
PHP Code:<? echo("$admin[email]"); ?>
We don't need a copy of the post above?
Want to hide these adverts? Register an account for free!