4 //Ejemplo para agregar un proceso a yatta.
7 require_once 'YATTA/Controlador.php';
10 //CREO UNA CONEXION MYSQL AL SERVIDOR
11 $db =& DB::connect('mysql://intranet:intranet@bal747f/yatta', true);
12 if (DB::isError($db)) {
13 die ($db->getMessage());
18 'script' => 'Prueba con Controlador',
20 'descripcion' => 'Prueba para probar los controladores',
24 //Agrego el proceso a traves del controlador.
25 $CONTROLADOR =& new YATTA_Controlador;
26 $res = $CONTROLADOR->agregarProceso($db, $datos);