muchachos, estoy tratando de hacer que al valor total del carrito se le sume un valor,(despacho)recogido segun la opcion que escojan.
Este formulario envia un numero id. Para traer el precio que corresponde al area .
Cita:
<form action="" method="POST" name="ciudad" id="ciudad">
<select name="ciudad" id="ciudad" onchange="this.form.submit()">
<option value="0"
selected="selected">-- Selecciona Área --</option>
<option value="1">I Región</option>
<option value="2">II Región</option>
<option value="3">III Región</option>
<option value="4">IV Región</option>
//si escoge 4 por ejemplo, deveria sumar 200 al total.
</select>
</form>
<select name="ciudad" id="ciudad" onchange="this.form.submit()">
<option value="0"
selected="selected">-- Selecciona Área --</option>
<option value="1">I Región</option>
<option value="2">II Región</option>
<option value="3">III Región</option>
<option value="4">IV Región</option>
//si escoge 4 por ejemplo, deveria sumar 200 al total.
</select>
</form>
abajo aparece el total sin el precio que vamos a pedir, este se actualiza al escoger uno de las opciones de arriba, sumandole el numero que rescato al total
Cita:
<?php
$ciudad=($_POST['ciudad']);
if($ciudad);{
$qry=mysql_query("select precio_z, id_z from zonas where
id_z='$ciudad'");
$prez =mysql_fetch_array($qry);
}
?>
<strong>Pecio Total:</strong> $<?php echo (($_GET['costo'])+$prez) ?> </span>
$ciudad=($_POST['ciudad']);
if($ciudad);{
$qry=mysql_query("select precio_z, id_z from zonas where
id_z='$ciudad'");
$prez =mysql_fetch_array($qry);
}
?>
<strong>Pecio Total:</strong> $<?php echo (($_GET['costo'])+$prez) ?> </span>
imprime el siguiente error;
Cita:
Detalle de los Productos Seleccionados:
Productos:
1unidades de_______ALCOHOLISM AND DRUG ADDICTION
Pecio Total: $
Fatal error: Unsupported operand types in C:\xampp\xampp\htdocs\pruabaphp\zenkyu\zpago.php on line 142
Productos:
1unidades de_______ALCOHOLISM AND DRUG ADDICTION
Pecio Total: $
Fatal error: Unsupported operand types in C:\xampp\xampp\htdocs\pruabaphp\zenkyu\zpago.php on line 142
linea 142:
Cita:
<strong>Pecio Total:</strong> $<?php echo (($_GET['costo'])+$prez) ?> </span>
me corregirian por favor
saludos