My code is like this now:
<?
include("mysql.uportu.inc");
$sql="SELECT * FROM docentes WHERE nome_doc<>'' ORDER BY nome_doc";
$resultado=@($sql);
while ($linhadocente=mysql_fetch_array($resultado)){
//$doc=$linhadocente["id_doc"];
$doc_id=$linhadocente["id_doc"];
$doc_name=$linhadocente["nome_doc"];
?>
<tr>
<td bgcolor=#006898 height=20>
<? echo "<a href='docente.php?doc=$doc_id'>$doc_name</a>" ?></td>
<td bgcolor=#006898 height=20>
<a href=mailto:<?echo $linhadocente["email_doc"];?> ><?echo $linhadocente["email_doc"];?></a>
</td>
</tr>
<?}?>
And still...I get the same errors. I can see in the explorer, that it gives through the doc like this:
http://admbeta0:8080/docente.php?doc=226
But s it doesn't want to take it in the second page 🙁
I'm almost getting crazy about this...It worked in Linux Apache, but now in Windows IIS it refuses to work