Ciao, ho inserito una variabile dentro una tabella, ma restituisce questo errore:
Parse error: syntax error, unexpected T_VARIABLE in C:\Inetpub

ecco il codice:
Codice PHP:

$table 
"<table border='0' cellpadding='0' cellspacing='20' width='100%'>
    <tr>
        <td>
        "
$title mysql_result($result,$i,'title');"

        "
$url mysql_result($result,$i,'url');"

        "
$datarichiesta mysql_result($result,$i,'datarichiesta'):"

        </td>
    </tr>
</table>"
;
echo 
$table
dove sbaglio?

Grazie