Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/07/2008, 05:01
Avatar de hawaiian050
hawaiian050
 
Fecha de Ingreso: junio-2007
Mensajes: 285
Antigüedad: 17 años, 5 meses
Puntos: 2
AYUDA - Undefined en accion y variable . Causas desconocidas

Hola,

tengo unos error que impiden el funcionamiento de mi programacion , alguien me podria ayuda ?



Código PHP:

ob_start
(); // no actua ?? 
if(isset($_GET['action']) && $_GET['action'] == "simulation") { 
$sim->simulation_search($_POST['input']);
}  


$smarty -> display($cfg->template.'head.tpl');


// show index
if(empty($_GET['video']) && empty($_GET['video_id'])) {
$_GET['video'] = $sim->random_index();
}


function 
generate_tags($how_much) {
$this->results mysql_query("SELECT * FROM `tags` order by rand() LIMIT $how_much");
$tag "";
while(
$this->q=mysql_fetch_array ($this->results)) {
$tag .= $this->q['tag'].'||';
}
$tag explode('||'$tag, -1); 
$tag str_replace('+'' '$tag);
return 
$tag;

No funciona , pero no da los errores error_reporting(E_ALL);

Formulario:
Código PHP:
      <form action="search-input.html" method="post">

        <
p>

          <
input type="text" name="input" id="searcher" value="" />



          <
input type="submit" value="" id="searcher_action" />

        </
p>

      </
form
Saludos y gracias

Última edición por hawaiian050; 04/07/2008 a las 08:31