本文整理汇总了PHP中Crud::insertar2方法的典型用法代码示例。如果您正苦于以下问题:PHP Crud::insertar2方法的具体用法?PHP Crud::insertar2怎么用?PHP Crud::insertar2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crud
的用法示例。
在下文中一共展示了Crud::insertar2方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: trim
$weblink = $_POST['ocul_link_' . $i];
$crud->moneda_dec($_POST['precio_' . $i]);
$precio = $crud->getValor();
$cantidad = $_POST['cantidad_' . $i];
$crud->moneda_dec($_POST['costo_ship_' . $i]);
$shipping = $crud->getValor();
$peso = $_POST['peso_' . $i];
$state = $_POST['state_tax_' . $i];
$crud->moneda_dec($_POST['pa_' . $i]);
$precio_web = $crud->getValor();
$crud->moneda_dec($_POST['flete_' . $i]);
$flete = $crud->getValor();
$crud->moneda_dec($_POST['subtotal_' . $i]);
$total = $crud->getValor();
$cotizacion_id = $_POST['refe'];
//quitar las "," de los numeros para guardarlos en la base de datos.
$valores = $valores . "('" . $tipo_serv . "','" . $descrip . "','" . $weblink . "','" . $precio . "','" . $cantidad . "','" . $shipping . "','" . $precio_web . "','" . $flete . "','" . $total . "','" . $peso . "','" . $state . "','" . $cotizacion_id . "'),";
$i++;
}
$valores = trim($valores, ",");
$array[0] = $valores;
$campos = "tipo_servicio,descripcion,weblink,precio_articulo,cantidad,shipping,precio_web,flete_smi,total,peso,state_tax,cotizacion_id";
$tabla = "items";
$mensaje = "Datos guardados con exito.";
$crud->insertar2($array, $campos, $tabla, $con->getConection(), $mensaje);
$con->desconectar();
?>
示例2: Crud
$con->conectar();
$crud2 = new Crud();
//insertamos el orden
$campos = "fecha_captu";
$tabla = "orden_captu";
$mensaje = "ok";
$valores = date('Y-m-d');
//------------
$crud2->insertar($valores, $campos, $tabla, $con->getConnection(), $mensaje, 'captura_id');
$crud = new Crud();
$campos = "contenido,orden_capturas";
$tabla = "capturas";
$mensaje = "Captura(s) guardada(s) con exito.";
$i = 1;
$valores = '';
$ult_id = $crud2->getLastid();
while ($i <= $_POST['control']) {
if (isset($_POST['sel' . $i])) {
//$valores = $_POST['vaso'.$i];
$valores = $valores . "('" . $_POST['vaso' . $i] . "',{$ult_id}),";
}
$i++;
//$crud->insertar2($valores,$campos,$tabla,$con->getConnection(),$mensaje);
}
$valores = trim($valores, ',');
$crud->insertar2($valores, $campos, $tabla, $con->getConnection(), $mensaje);
echo $crud2->getLastid();
$con->desconectar();
?>