PHP Classes

File: www/include/pays_choix_recherche.php

Recommend this page to a friend!
  Classes of Adnane EL Mouttaki   Covoiturage Libre   www/include/pays_choix_recherche.php   Download  
File: www/include/pays_choix_recherche.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Covoiturage Libre
Web application for managing a carpoling site
Author: By
Last change:
Date: 6 years ago
Size: 3,086 bytes
 

Contents

Class file image Download
<div style="position:relative;display:inline;">
<?php
if($pays_desc=='depart'){
   
$echopays=$_POST['PAYS_DEPART'];
}
else {
   
$echopays=$_POST['PAYS_ARRIVEE'];
}
?>
<a href="#" class="pays_" id="pays_<?=$pays_desc?>">Pays : <span id="pays_<?=$pays_desc?>_nom" class="<?php echo $echopays;?>"></span></a>
<table id="flags_table_<?=$pays_desc?>" class="flags_table" width="auto" border="0" cellspacing="0" cellpadding="5">
  <tr>
    <td align="center" valign="middle">
      <input type="radio" name="PAYS_<?=strtoupper($pays_desc)?>" value="DE" id="PAYS_<?=strtoupper($pays_desc)?>_0" <?php if($echopays=='DE'){echo 'checked="checked"';}?> /><br />
      <label for="PAYS_<?=strtoupper($pays_desc)?>_0"><img src="images/flags/flag-allemagne.jpg" width="20" height="13" alt="Allemagne" /></label>
      </td>
    <td align="center" valign="middle">
      <input type="radio" name="PAYS_<?=strtoupper($pays_desc)?>" value="BE" id="PAYS_<?=strtoupper($pays_desc)?>_1" <?php if($echopays=='BE'){echo 'checked="checked"';}?>/><br />
      <label for="PAYS_<?=strtoupper($pays_desc)?>_1"><img src="images/flags/flag-belgique.jpg" width="20" height="13" alt="Belgique" /></label>
      </td>
    <td align="center" valign="middle">
    <input name="PAYS_<?=strtoupper($pays_desc)?>" type="radio" id="PAYS_<?=strtoupper($pays_desc)?>_3" value="FR" <?php if($echopays=='FR'){echo 'checked="checked"';}?>/><br />
    <label for="PAYS_<?=strtoupper($pays_desc)?>_3"><img src="images/flags/flag-france.jpg" width="20" height="13" alt="France" /></label>
        </td>
    <td align="center" valign="middle">
    <input type="radio" name="PAYS_<?=strtoupper($pays_desc)?>" value="IT" id="PAYS_<?=strtoupper($pays_desc)?>_4" <?php if($echopays=='IT'){echo 'checked="checked"';}?> /><br />
    <label for="PAYS_<?=strtoupper($pays_desc)?>_4"><img src="images/flags/flag-italie.jpg" width="20" height="13" alt="Italie" /></label>
    </td>
    <td align="center" valign="middle">
    <input type="radio" name="PAYS_<?=strtoupper($pays_desc)?>" value="CH" id="PAYS_<?=strtoupper($pays_desc)?>_7" <?php if($echopays=='CH'){echo 'checked="checked"';}?>/><br />
    <label for="PAYS_<?=strtoupper($pays_desc)?>_7"><img src="images/flags/flag-suisse.jpg" width="20" height="13" alt="Suisse" /></label>
    </td>
  </tr>
  </table>
 
</div>
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(function() {
    $('a#pays_<?=$pays_desc?>').click(function(event) {
        event.preventDefault();
        $('.flags_table[id!=flags_table_<?=$pays_desc?>]').fadeOut('slow');
        $('#flags_table_<?=$pays_desc?>').fadeToggle('slow');
    });
    $('#flags_table_<?=$pays_desc?> input').click(function(){
        var pays = $(this).val();
        $('#flags_table_<?=$pays_desc?>').fadeToggle('slow');
        //$('#pays_<?=$pays_desc?>_nom').html(pays);
        var classe = $('#pays_<?=$pays_desc?>_nom').attr('class');
        $('#pays_<?=$pays_desc?>_nom').removeClass(classe);
        $('#pays_<?=$pays_desc?>_nom').addClass(pays);
    });
});

function flagclose(){
        $('.flags_table[id!=flags_table_<?=$pays_desc?>]').fadeOut('slow');
}
/* ]]> */
</script>