|    
			
				09/11/2004, 09:51
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: octubre-2003 Ubicación: Puerto Montt 
						Mensajes: 3.667
					 Antigüedad: 22 años Puntos: 11 |  | 
  |  crea tu formulario con tus botones. 
 formulario.html
 
 <form name="form1" action="procesar.php" method="post">
 <input type="submit" name="listar">
 <input type="submit" name="buscar">
 </form>
 
 script php:
 
 procesar.php
 <?php
 include("clase.php");
 $objeto=new clase();
 if ($_POST['listar'])
 {
 $objeto->listar();
 }
 if ($_POST['buscar'])
 {
 $objeto->buscar();
 }
 ?>
 
 Esa es la idea, tu lo haces como te convenga.
     |