本文整理汇总了PHP中FormValidator::getErrorBox方法的典型用法代码示例。如果您正苦于以下问题:PHP FormValidator::getErrorBox方法的具体用法?PHP FormValidator::getErrorBox怎么用?PHP FormValidator::getErrorBox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormValidator
的用法示例。
在下文中一共展示了FormValidator::getErrorBox方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: FormValidator
echo '<meta http-equiv="refresh" content="0;url=ingreso.php?invalid=invalid"';
if ($_POST['enviar'])
{
$fv = new FormValidator($_POST);
$fv->doValidation();
$date = getdate();
if($fv->isError()) {
//
// if error show the error box
//
echo($fv->getErrorBox());
}
elseif (isset($_REQUEST['t_proceso_1'])) {
$sql = "select * from seguimiento where orden = ".$_REQUEST['t_orden_1'] . " and proceso = '".$_REQUEST['t_proceso_1']."'";
$dato = $db->Execute($sql);
$recordset = $db->Execute($sql);
if ($recordset->_numOfRows == 0){
//echo "estoy insertando";
示例2: FormValidator
$imprimir .= "</table>";
echo $imprimir;
if ($_POST['enviar'])
{
$fv = new FormValidator($_POST);
$fv->doValidation();
if($fv->isError()) {
//
// if error show the error box
//
$imprimir .= ($fv->getErrorBox());
}
else {
$sql = "select ord.ingreso, ord.referencia, ord.unidades, cliente.nombre_cliente, ord.orden,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 's001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as SEPARACION,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 'i001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as IMPRESION,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 'g001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as GRABACION,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 'm001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as MUESTRA,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 'p001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as PRODUCCION,
(select to_char(inicio, 'YYYY/mm/dd HH12:MI:SS') || ' -- ' || case when finalizacion is null then 'sin finalizar' else to_char(finalizacion, 'YYYY/mm/dd HH12:MI:SS') end from seguimiento where orden = ord.orden and proceso = 't001' and (inicio between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') and ((finalizacion between '{$_REQUEST['t_fecha_inicio_4']}' and '{$_REQUEST['t_fecha_fin_4']}') or finalizacion is null)) as TERMOFIJACION,