Código PHP:
<?php
//Variables para conectarnos a la Base de Datos
$host = "localhost";
$username = "xxxxx";
$password = "xxxxx";
$basedatos = "xxxxx";
//Conectamos a la Base de datos
$db = mysql_connect($host, $username, $password);
mysql_select_db($basedatos, $db);
// Sacar info de la base de datos
$query = mysql_query("SELECT id, title, date, desc, thumb FROM mx_albums", $db);
while ($data = mysql_fetch_array($query))
{
//sacar info
$nombre = stripslashes($data["title, date, thumb, desc"]);
echo "<table width="170" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>$thumb</td>
</tr>
<tr>
<td>$desc</td>
</tr>
<tr>
<td>$date</td>
</tr>
</table>";
}
?>
Parse error: syntax error, unexpected T_LNUMBER, expecting ',' or ';' in /home2/manganix/public_html/zero/indes.php on line 351
he intentado moverlo pero no se como hacerlo funcionar soy apenas aprendiz de php, pero si me pudieran ayudar a hacerlo funcionar y si me pudieran explicar mas o menos el porque el problema se los agradeceria mucho. y gracias por todo.