sapete dirmi perchè non riesce a stamparmi nome_evento?<?php
$sql = "SELECT * FROM eventi " .
"WHERE id ='$id'";
$result = mysql_query($sql)
or die("ci sta qualcosa che non va in questa query " . mysql_error());
$row = mysql_fetch_array($result);
echo "<h3>".$nome_evento."</h3>";
?>
ho provato anche con:
echo "<h3>".$row['nome_evento']."</h3>";
ma fa la stessa cosa.
thanks![]()
![]()