Ver Mensaje Individual
  #8 (permalink)  
Antiguo 18/10/2006, 12:49
nopuedoentrar
 
Fecha de Ingreso: junio-2005
Mensajes: 13
Antigüedad: 18 años, 11 meses
Puntos: 0
Tu haces esto:

<?
require("lastRSS.php");
Get("la url del RSS");
?>


Y yo al tratar con clases haría esto:

<?
require("lastRSS.php");
$miVble=new lastRSS();
$miVble->Get("la url del RSS");
?>


A ver si hay suerte y te vale de algo.