Un petit problème en PHP
Fermé
catrina
-
29 mars 2008 à 13:39
carbon3 Messages postés 470 Date d'inscription mercredi 20 février 2008 Statut Membre Dernière intervention 6 janvier 2013 - 29 mars 2008 à 15:27
carbon3 Messages postés 470 Date d'inscription mercredi 20 février 2008 Statut Membre Dernière intervention 6 janvier 2013 - 29 mars 2008 à 15:27
A voir également:
- Un petit problème en PHP
- Easy php - Télécharger - Divers Web & Internet
- Excel trier du plus grand au plus petit - Guide
- Petit 1 comme ² ✓ - Forum Windows
- Petit colis distribution - Forum Réseaux sociaux
- Petit 3 ✓ - Forum Word
1 réponse
carbon3
Messages postés
470
Date d'inscription
mercredi 20 février 2008
Statut
Membre
Dernière intervention
6 janvier 2013
73
29 mars 2008 à 15:27
29 mars 2008 à 15:27
salut,
fichier catrina.php :
et fichier exp.php :
fichier catrina.php :
<html> <head> <title>Convert Catrina</title> <?php $get_input=$_SERVER['PHP_SELF']; include_once('exp.php'); ?> </head> <body> <form name="f" method="POST" action="<?php echo $get_input ?>"> <table border="1"> <tr> <th colspan="2">Saisir un caractère S.V.P.</th> </tr><tr> <td align="center" width="250"><input name="t1" type="text" maxlength="1"size="1" style="font-size:14pt;"/></td> <td id="t2" style="width:250px;font-size:16pt; font-family:courier new; text-align:center"/></td> </tr> </table> <?php if(isset($_POST['t1'])) { daillo(); } ?> </form> </body> </html>
et fichier exp.php :
<?php function daillo() { $t=$_POST['t1']; if (ord($t)>=ord(a) && ord($t)<=ord(z)) { echo '<script language="javascript">document.getElementById(\'t2\').innerHTML="'.$t.' --> '.strtoupper($t).'";</script>'; } else if (ord($t)>=ord(A) && ord($t)<=ord(Z)) { echo '<script language="javascript">document.getElementById(\'t2\').innerHTML="'.$t.' --> '.strtolower($t).'";</script>'; } else if (ord($t)>=ord(1) && ord($t)<=ord(9)) { echo '<script language="javascript">document.getElementById(\'t2\').innerHTML="'.$t.' --> '.ord($t).'";</script>'; } else { echo '<script language="javascript">document.getElementById(\'t2\').innerHTML="caractère non traité";</script>'; } } ?>