Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.71 KB | None | 0 0
  1.  
  2. if($material == 2) {
  3.         include_once("precios/pvc/pvc$tipoventana.php");
  4.    
  5.         //echo $tipoventana." ".$tipomezcla." ".$altoVentana." ".$anchoVentana];
  6.         $precio = $pvc[$tipoventana][$tipomezcla][$altoVentana][$anchoVentana];
  7.         $precio = $precio * 1.18 * ($precioSube/100);
  8.     }else if($material == 1){
  9.         if($seriealuminio == 1){
  10.              include_once("precios/europea/europea$tipoventana.php");
  11.              $precio = $europea[$tipoventana][$tipomezcla][$altoVentana][$anchoVentana];
  12.         }
  13.         else if ($seriealuminio == 2){
  14.             include_once("precios/rpt/rpt$tipoventana.php");
  15.             //echo $rpt[$tipoventana][$tipomezcla][$altoVentana][$anchoVentana];
  16.             $precio = $rpt[$tipoventana][$tipomezcla][$altoVentana][$anchoVentana]         
  17.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement