本文整理匯總了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();
?>