Ciao a tutti.
Io ho questo codice:
Codice PHP:
<?php
session_start();
?>
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="65001"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>FantaWillos - Rose</title>
<link rel="stylesheet" type="text/css" href="stili/style.css">
<script src="include/fixedbackground.js" type="text/javascript"></script>
</head>
<body class="twoColLiqRtHdr" onload="fixedBackground('include/sfondo.jpg');">
<div id="container">
<div id="header">
<image src="include/logo.jpg" width="100%" alt="Fantawillos.it">
<!-- end #header --></div>
<div id="sidebar1">
<center><font size="3">
<a href="index.php">Home</a><br><br>
<a href="regolamento.php">Regolamento</a><br><br>
<a href="rose.php">Rose</a><br><br>
<a href="formazioni.php">Formazioni</a><br><br>
<a href="calendario.php">Calendario</a><br><br>
<a href="classifiche.php">Classifiche</a><br><br>
<a href="mercato.php">Mercato</a><br><br><br><br>
</font>
</center>
<?php
if($_SESSION["privilegi"] === "0") {
include("pannello_utente.php");
} else if($_SESSION["privilegi"] === "1") {
include("pannello_presidente.php");
} else if($_SESSION["privilegi"] === "2") {
include("pannello_amministratore.php");
} else if(!isset($_SESSION["privilegi"])) {
include("main_login.php");
}
?>
</div>
<div id="mainContent">
<center><h2>Rose</h2></center>
<?php
$host="localhost"; // Hostname
$username="elettronicaqui"; // Mysql username
$password=""; // Mysql password
$db_name="my_elettronicaqui"; //Nome del Database
$tbl_name="regolamento"; // Nome della Tabella
$db = mysql_connect($localhost,$username,$password);
mysql_select_db($db_name,$db);
?>
<?php
$squadra = "$_SESSION[squadra]";
$privilegi = "$_SESSION[privilegi];
?>
<?php
$out = "<table border=\'1\'><tr><td>Portieri</td><td>Difensori</td><td>Attaccanti</td><td>Centrocampisti</td></tr>";
$sql = mysql_query("SELECT portieri,difensori,attaccanti,centrocampisti FROM '.$squadra.'");
while($row = mysql_fetch_array($sql)) {
$out .= "<tr><td>{$row["portieri"]}</td><td>{$row["difensori"]}</td><td>{$row["attaccanti"]}</td><td>{$row["centrocampisti"]}</td></tr>";
}
echo $out . "</table>";
?>
</div>
<!-- Questo elemento di clearing deve seguire immediatamente il div #mainContent al fine di forzare il div #container a contenere tutti i float di livello inferiore --><br class="clearfloat" />
<div id="footer">
<font size="2"><center>
Coded by <a href="http://www.programmarealpc.altervista.org">fabbroniko</a><br>
Copyright© FantaWillos. Tutti i diritti riservati. Vietata la copia singola o parziale.
</font></center>
<!-- end #footer --></div>
<!-- end #container --></div>
</body>
</html>
E mi da il seguente errore:
Parse error: syntax error, unexpected T_STRING in /membri/elettronicaqui/internet_explorer/rose.php on line 65
ovvero a questa linea:
Codice PHP:
$out = "<table border=\'1\'><tr><td>Portieri</td><td>Difensori</td><td>Attaccanti</td><td>Centrocampisti</td></tr>";
Dov'è l'errore??? Come correggerlo?
Grazie mille.