codice:
<html>
<? require("connect.php"); //Including the language.inc
require($lang); //Including the config_style.inc
require($style);
?>
<head>
<title>Untitled</title>
</head>
<body>
<table width="990" height="100%">
<tr>
<td height="45" background="http://www.fifaclubs.com/pes/images/cap01.png">
<?php
$connect = @mysql_connect($dbhost, $dbuser, $dbpasswd) or die ("Non connesso");
@mysql_select_db($db_name);
$query = "SELECT * FROM $table_news ORDER BY uid DESC LIMIT 1";
$esegui = @mysql_query($query, $connect);
while ($result = @mysql_fetch_array($esegui))
{
echo "<div class=title style=padding-left:62px;padding-top:10px;padding-right:5px;color:#ffffff;>
$result[news_title]
</div>
</td>
</tr>
<tr>
<td width=502 height=250 background=http://www.fifaclubs.com/pes/images/bg02.jpg valign=top>
<table width=480 height=200 cellspacing=2 cellpadding=2 border=0>
<tr>
<td valign=top align=left>
<div style=padding-left:20px;padding-top:10px;padding-right:5px;color:#ffffff; align=justify>
$result[news_short]
$result[news_long]";
}
?>
</div>
</td>
</tr>
</table>
</body>
</html>