function mensaje_correcto($mensaje = "", $url = BASE_URL) { showHeaders(); showMenu(); correct_mensaje($mensaje, $url); showFoot(); }
function registrarse() { showHeaders(); showMenu(); $form = $this->M_DATA->readFile("json/registrar_usuario.json"); $form = $this->C_FORMING->creaForm($form); showForm($form); //*/ //showProductos1(); showFoot(); }
function showError($msg, $url = 'javascript:history.go(-1);') { showHead(); ?> <div class="error"> <?php echo $msg; ?> <br /><br /><a href="<?php echo $url; ?> ">返回上一步</a> </div> <?php showFoot(); exit; }