3
I am new in php and I am creating a comparison of box sizes, and for that I would like to put inside a function more I do not know which parameter to put inside the relatives of the function. Someone could help me, Thank you.
<?php
include("caixa.php");
function CalcularCaixa()// não sei o que colocar dentro desse parentes
{
if(isset($_SESSION['caixa'][$id]));
{
if($id == 1)
{
if($quantidade >= 1)
{
if($quantidade <= 50)
{
echo $altura;
echo $largura;
echo $comprimento;
echo $peso;
}
elseif($quantidade <= 100)
{
echo $altura * 2;
echo $largura * 2;
echo $comprimento * 2;
echo $peso * 2;
}
elseif($quantidade <= 150)
{
echo $altura * 3;
echo $largura * 3;
echo $comprimento * 3;
echo $peso * 3;
}
}
}
}
}
?>
Thanks for the help man, I’ll take a look and try here thanks!
– Leonardo Silva