Advertisement
Guest User

lolloloa

a guest
May 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $litri=$_GET["litri"];
  3. if($litri>9)
  4. {
  5. $cognome=$_GET["cognome"];
  6. $nome=$_GET["nome"];
  7. $tot=0;
  8. $prezzo=$_GET["vitigno"];
  9. $tot=$prezzo*$litri;
  10.  
  11. if(isset($_GET["annata"]))
  12. {
  13. $annata=$_GET["annata"];
  14. $aumento=$tot*$annata/100;
  15. $tot=$aumento+$tot;
  16. }
  17. if(isset($_GET["confreg"])){
  18. $confreg=$_GET["confreg"];
  19. $tot=$tot+$confreg;
  20. }
  21. if(isset($_GET["conconc"])){
  22. $conconc=$_GET["conconc"];
  23. $tot=$tot+$conconc;
  24. }
  25. echo "il totale fattura di ". $cognome."&nbsp". $nome. " e'" . $tot;
  26. }
  27. else
  28. echo "Inserisci una quantita' maggiore di 9";
  29.  
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement