Ver Mensaje Individual
  #10 (permalink)  
Antiguo 07/09/2005, 19:40
Santitg
 
Fecha de Ingreso: septiembre-2005
Mensajes: 9
Antigüedad: 18 años, 7 meses
Puntos: 0
He hecho esto:

// First check if the ID is set and if it is valid (contains nothing but numbers)
$id=$_GET['id'];
if(empty($id) || ereg("^[0-9]",$id)) {die("Invalid ID, numbers (0-9) only!");}

//if(empty($id) || preg_match("/\D/",$id)) {die("Invalid ID, numbers (0-9) only!");}


Pero me sigue dando el mismo error:

Parse error: parse error, unexpected T_STRING in /data/members/paid/t/u/tutorialgames.net/htdocs/www/ccount/click.php on line 3


readme.htm


Puede ser algún espacio o caracter mal puesto ??

Última edición por Santitg; 07/09/2005 a las 19:52