Código PHP:
<?php
if (isset($_GET['proceso'])){
echo $_GET['proceso']."<br>";
}
?>
<?php
include("conex.php");
$link=Conectarse();
$result=mysql_query("select * from eventos where id_evento='".$_GET['id_evento']."'",$link);
if ($row = mysql_fetch_array($result)){
mysql_field_seek($result,0);
$dia = $row['dia'];
}
?>
Código PHP:
<?=$row['ano']?>
en enlace previo contiene: eventosv.php?id=".$row["id_evento"]."
cual seria el problema?