Hello since cereal helped me out with the price and counting in PHP i need just one more thing, to get the names of the products i have tryed different ways to do it by my self but i just cant cause im begginer with PHP language, i have this array:
$names = array (
"mikrobranova" => "Mikrobranova pecka",
"smasina" => "Masina za sadovi",
"amasina" => "Masina za alista",
"sol" => "Sol",
"prasok" => "Prasak za perenje",
"salama" => "Salama",
"banani" => "Banani",
"vegeta" => "Vegeta",
"zejtin" => "Zejtin",
"paketce" => "Novogodisno paketce"
);
$_SESSION['prducts_and_names'] = print($names);
So i need when ill press the "BUY BUTTON" to show me the products i have "checked" on the checkboxes.
Thanks :)