allora ,sono riuscito a far funzionare concatenati i radio buttons e i checkboxes ma come faccio a concatenare a quest'altri il select menu??

posto i codici:


HTML
codice:
<form >
Nome
<input type="text" name="nome">

Cognome
<input type="text" name="cognome">


Quante persone

1<input name="persone" type="radio" value="p1" >

2<input name="persone" type="radio" value="p2">

3<input name="persone" type="radio" value="p3">


 <select>
  <option name="camere1"  >Camera singola</option>
  <option name="camere2" >Camera doppia</option>
  <option name="camere3" >Camera tripla</option>
  </select>

 
  Quante notti
  1<input name="notte1" type="checkbox" >
  2<input name="notte2" type="checkbox" >
  3<input name="notte3" type="checkbox" >

  
  

  
<input type="submit" value=" Calcola il totale ">

  </form>
php:

Codice PHP:
<?php





if(($persone=="p1"))
{
$totale=$totale+5;}
if((
$persone=="p2"))
{
$totale=$totale+8;}
if((
$persone=="p3"))
{
$totale=$totale+13;}

if((
$camere1=="on"))
{
$totale=$totale+10;}
if((
$camere2=="on"))
{
$totale=$totale+15;}
if((
$camere3=="on"))
{
$totale=$totale+20;}

if((
$notte1=="on"))
{
$totale$totale*1;}
if((
$notte2=="on"))
{
$totale$totale*2;}
if((
$notte3=="on"))
{
$totale=$totale*3;}



echo 
"Il totale è di Euro(€) $totale";


?>



mi manca solo questo passaggio(concatenare anche select menu)