Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

syntax error

Newbie Spellweaver
Joined
Aug 3, 2019
Messages
9
Reaction score
0
need help how to fix this

Parse error: syntax error, unexpected '=' in C:\AppServ\www\ranking2.php on line 43


<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ranking</title>
<link rel="stylesheet" type="text/css" href="estilos/tabla.css">
<style type="text/css">
#arriba table, caption, tbody, tfoot, thead, tr, th, td{
border: 0;

}

#arriba td:hover{
background:#FFFFFF;

}

#arriba tr:hover{
background:#FFFFFF;

}

.Estilo1 {color: #FFFF00}
</style>
</head>

<body>
<div id="itsthetable">

<div id="arriba">
<table width="399" border="0" align="center">
<tr>
<td align="center"><img height=24 src="imagenes/1.gif" /><br /><a href="ranking.php?dios=1" class="Estilo1" >
Brahma</a></td>
<td align="center"><img height=24 src="imagenes/4.gif" /><br /> <a href="ranking.php?dios=4" >Shiva </a></td>
<td align="center"><img height=24 src="imagenes/2.gif" /><br /><a href="ranking.php?dios=2">
Vishnu</a></td>
</tr>
</table>

<table width="400" border="0" align="center">
<TR>

<TD align="center" ><IMG height=24 src="imagenes/icon4.gif" ><br>
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=4" >Asura</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon8.gif" ><br>
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=8" >Rakshasa</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon64.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=64" >Deva</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon128.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=128" >Garuda</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon16.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=16" >Yaksa</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon32.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=32" >Gandharva</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon1.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=1" >Naga</a></TD>
<TD align="center" ><IMG height=24 src="imagenes/icon2.gif" ><br />
<a href="ranking.php?dios=<?php=$trimurity?>&tribe=2" >Kimnara</a></TD>
</TR>

</table>
</div>
<table width="403" align="center" summary="ranking">

<thead>

<tr>
<th bgcolor="#006699" scope="col">Nombre</th>
<th bgcolor="#006699" scope="col">Puntos</th>

<th bgcolor="#006699" scope="col">Clan</th>
<th bgcolor="#006699" scope="col">Dios</th>
<th bgcolor="#006699" scope="col">Raza</th>
</tr>
</thead>
<tfoot>
<tr>
<th colspan="5" scope="row">

</th>
</tr>
</tfoot>
<tbody>

<?php echo $rank?>

</tbody>
</table>

</div>
</body>
</html>
 
Back
Top