IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

Réglage de l'heure


Sujet :

Langage PHP

  1. #1
    Nouveau Candidat au Club
    Homme Profil pro
    php
    Inscrit en
    Novembre 2013
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : php
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 5
    Points : 1
    Points
    1
    Par défaut Réglage de l'heure
    Bonsoir à tous, cher développeur !

    Voila je viens de récupérer un site internet qui est http://mealtemple.com

    lorsque l'on va dans la rubrique "Our restaurants" il y a "open" et "close" et l'ancien "webmaster" m'a dis que cela se mettait a jour automatiquement en fonction de l'heure du serveur ... j'ai mis mon serveur à l'heure de phnom-penh (comme l'était l'ancien serveur où était hébergé le site,vous pouvez vérifier en vous rendant sur http://mealtemple.com/test.php) j'ai mis a l'heure le serveur en SSH et dans le php.ini mais rien ne se passe ... le site a était codé en php3 pour certaines parties....

    j'avoue que cela fait 1 mois que je me prend la tête dessus, que je cherche mais sans réponses ... je viens vers vous pour m'éclairer car là c'est la cale sèche !

    Je voudrais que les heures soit prise en compte avec ce "open" "close" et que les restaurants se gèrent tout seul.

    Cordialement,
    Un petit développeur en grande galère ...

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Sans voir le code qui determine si un restaurant est "open" ou "closed" c'est difficile de te répondre.
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  3. #3
    Nouveau Candidat au Club
    Homme Profil pro
    php
    Inscrit en
    Novembre 2013
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : php
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 5
    Points : 1
    Points
    1
    Par défaut
    Bonjour,

    Oui en effet autant pour moi ...

    Voici le code, qui est le même pour tous les jours de la semaine :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    $jours = date("l");	
    	$heure = date("G:i:s");	
     
    	if($jours == 'Monday' )		
    	{	
    		$nbchars = strlen($new['horairelundi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairelundi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairelundi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairelundi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairelundi'], 6, 11) > 24) {			?>am<?			} else {			?>m<?			} 	?><br />
    		<?
    		}		
     
     
     
     
    		$nbchars = strlen($new['horairelundisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairelundisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairelundisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairelundisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}			
     
     
    	}	
    	if($jours == 'Tuesday' )			
    	{	
    		$nbchars = strlen($new['horairemardi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairemardi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairemardi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairemardi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairemardi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}	
     
     
    		$nbchars = strlen($new['horairemardisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairemardisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairemardisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairemardisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}	
     
     
     
    	}		
    	if($jours == 'Wednesday' )			
    	{	
     
    		$nbchars = strlen($new['horairemercredi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairemercredi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairemercredi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairemercredi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairemercredi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}
    		$nbchars = strlen($new['horairemercredisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairemercredisoir'], 0, 5).''; ?>pm - 	<? echo substr($new['horairemercredisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairemercredisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}

    Voilà, je ne comprend pas d'où viens le problème ..

    Cordialement

  4. #4
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Il n'y a ni "open" ni "closed" dans ce bout de code.
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  5. #5
    Nouveau Candidat au Club
    Homme Profil pro
    php
    Inscrit en
    Novembre 2013
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : php
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 5
    Points : 1
    Points
    1
    Par défaut
    Oui en effet ... je suis désolé mais la fatigue se fait sentir après une nuit blanche sur ce fichu site ...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    				<td>Delivery Hours:	</td>				<td>
     
    <?	
    	$jours = date("l");	
    	$heure = date("G:i:s");	
     
    	if($jours == 'Monday' )		
    	{	
    		$nbchars = strlen($new['horairelundi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairelundi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairelundi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairelundi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairelundi'], 6, 11) > 24) {			?>am<?			} else {			?>pm<?			} 	?><br />
    		<?
    		}		
     
     
     
     
    		$nbchars = strlen($new['horairelundisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairelundisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairelundisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairelundisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}			
     
     
    	}	
    	if($jours == 'Tuesday' )			
    	{	
    		$nbchars = strlen($new['horairemardi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairemardi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairemardi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairemardi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairemardi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}	
     
     
    		$nbchars = strlen($new['horairemardisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairemardisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairemardisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairemardisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}	
     
     
     
    	}		
    	if($jours == 'Wednesday' )			
    	{	
     
    		$nbchars = strlen($new['horairemercredi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairemercredi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairemercredi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairemercredi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairemercredi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}
    		$nbchars = strlen($new['horairemercredisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairemercredisoir'], 0, 5).''; ?>pm - 	<? echo substr($new['horairemercredisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairemercredisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}
     
    	}			
    	if($jours == 'Thursday' )			
    	{	
    		$nbchars = strlen($new['horairejeudi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairejeudi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairejeudi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairejeudi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairejeudi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}
     
    		$nbchars = strlen($new['horairejeudisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairejeudisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairejeudisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairejeudisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}
     
    	}			
    	if($jours == 'Friday' )				
    	{	
     
    		$nbchars = strlen($new['horairevendredi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairevendredi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairevendredi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairevendredi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairevendredi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}	
     
     
     
    		$nbchars = strlen($new['horairevendredisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairevendredisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairevendredisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairevendredisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}
     
    	}			
    	if($jours == 'Saturday' )		
    	{	
     
     
     
     
    		$nbchars = strlen($new['horairesamedi']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairesamedi'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairesamedi'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairesamedi'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairesamedi'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}			
     
     
     
     
     
    		$nbchars = strlen($new['horairesamedisoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairesamedisoir'], 0, 5).''; ?>pm - <? echo substr($new['horairesamedisoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairesamedisoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}
     
    	}			
    	if($jours == 'Sunday' )			
    	{	
     
     
     
     
    		$nbchars = strlen($new['horairedimanche']);
    		if ($nbchars > 2) {
    		?>
    			<? echo substr($new['horairedimanche'], 0, 5).''; ?>am - 
     
    			<? 
    			$nbcharsj = substr($new['horairedimanche'], 6, 11);
    			if ($nbcharsj == 24)
    			{
    			?>12:00<?
    			}else{
    			echo substr($new['horairedimanche'], 6, 11).'';
    			}	
    			?>
    			<?			if (substr($new['horairedimanche'], 6, 11) > 24) {			?>am<?			} else {			?>am<?			} 	?><br />
    		<?
    		}			
     
     
     
     
     
     
    		$nbchars = strlen($new['horairedimanchesoir']);
    		if ($nbchars > 2) {
    		?>			
    			<? echo substr($new['horairedimanchesoir'], 0, 5).''; ?>pm - 	<? echo substr($new['horairedimanchesoir'], 6, 11).''; ?>
    			<?			if (substr($new['horairedimanchesoir'], 6, 11) < 12) {			?>pm<?			} else {			?>pm<?			} 	?>
    			<br />
    		<?
    		}
     
    	}			
    ?>	
     
    					<?php
    					if($new['open'] == '0' )
    					{
    					?><font color="red">Close</font><?php
    					} else {
    					?><font color="green">Open</font><?php	
    					} 
    					?>					
    				</td>	
    			</tr>
    			<tr>
    				<td>Delivery Time:	</td>				<td><?=$new['deliverytime'];?> min</td>	
    			</tr>
    			<tr>
    Voila tout le code en entier !

    Cordialement

  6. #6
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Le statut open/close depend de $new['open'].
    Il faudrait voir où est construite cette variable.
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  7. #7
    Nouveau Candidat au Club
    Homme Profil pro
    php
    Inscrit en
    Novembre 2013
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : php
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 5
    Points : 1
    Points
    1
    Par défaut
    la suite du code est là, je pense que la variable est là ...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
     
    				<td>Delivery Time:	</td>				<td><?=$new['deliverytime'];?> min</td>	
    			</tr>
    			<tr>
    				<td>Food Type:	</td>				<td>
    										<?=$new['foodtype'];?> 
    											<?php
    											if(!empty($new['specialitebg']) )
    											{
    											?>- <?=$new['specialitebg'];
    											}	
    											if(!empty($new['foodtype3']) )
    											{
    											?>- <?=$new['foodtype3'];
    											}	
    											if(!empty($new['foodtype4']) )
    											{
    											?>- <?=$new['foodtype4'];
    											}	
    											if(!empty($new['foodtype5']) )
    											{
    											?>- <?=$new['foodtype5'];
    											}	
    											if(!empty($new['foodtype6']) )
    											{
    											?>- <?=$new['foodtype6'];
    											}	
    											?>
    											</td>	
    			</tr>
    			<tr>
    				<td>Payment:	</td>				<td>Cash on delivery <br />- <br /> <img src='image/image001wingmini.png'></td>	
    			</tr>
    			</table>
     
    				</td>
                    <td class="100px"><small><?=$nbr;?> reviews</small></td>
    					<?php
    					if($new['open'] == '0' )
    					{
    					?> <td width="140px"><a class="buttonclose<?=$new['id'];?>" href="/?i=view_restaurant&id=<?=$new['id'];?>"><span>SEE MENU</span></a></td>
     
    					<?php
    					} else {
    					?> <td width="140px"><a class="button" href="/?i=view_restaurant&id=<?=$new['id'];?>"><span>SEE MENU</span></a></td><?php	
    					} 
    					?>				
     
                  </tr>
    				<?php	
    					}	
    				?>				  
                </tbody>
              </table>
            </div>
     
          </div>
        </div>
        <div class="clear"></div>
      </div>
     
    <?php
    $query_new = 'SELECT * FROM restaurants ORDER BY id DESC ';
    $r_new = mysql_query($query_new);
    while($new = mysql_fetch_assoc($r_new))
    {
     
    ?>
    <script>
    $(document).ready(function() {
    	$("a.buttonclose<?=$new['id'];?>").fancybox({
    		content: $("#popup<?=$new['id'];?>"),
    		closeClick  : false,
    		helpers   : { 
    			overlay : {
    				closeClick: false
    			}
    		}
    	});
    });
    </script>
    Cordialement

  8. #8
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Non ce n'est pas là.
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  9. #9
    Nouveau Candidat au Club
    Homme Profil pro
    php
    Inscrit en
    Novembre 2013
    Messages
    5
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : php
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Novembre 2013
    Messages : 5
    Points : 1
    Points
    1
    Par défaut
    tenez je vous ai uploadé le fichier au complet ... je ne comprend vraiment pas .. ce site est vraiment codé de façon très étrange ...

    voici le lien : http://dl.free.fr/fhfAbdC6q

    En espérant vous avoir fait part du bon fichier ....

    Cordialement

Discussions similaires

  1. problème réglage de l'heure laptop
    Par abu_mohamed dans le forum Ordinateurs
    Réponses: 2
    Dernier message: 17/05/2012, 21h57
  2. Réglage de l'heure sur mon site
    Par dodo91 dans le forum Langage
    Réponses: 2
    Dernier message: 19/05/2009, 08h20
  3. Règlage de l'heure sous Linux
    Par diabli73 dans le forum Langage
    Réponses: 2
    Dernier message: 10/02/2009, 17h57
  4. Réglage de l'heure et SDL
    Par lebaste77 dans le forum SDL
    Réponses: 3
    Dernier message: 06/02/2008, 09h34
  5. Réponses: 11
    Dernier message: 23/07/2002, 14h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo