A voir également:
- Code html entre 2 balises php
- Code asci - Guide
- Code puk bloqué - Guide
- Editeur html - Télécharger - HTML
- Code telephone oublié - Guide
- Code activation windows 10 - Guide
4 réponses
imencity
Messages postés
214
Date d'inscription
mardi 5 mai 2009
Statut
Membre
Dernière intervention
29 août 2014
43
5 juin 2009 à 12:30
5 juin 2009 à 12:30
<?php if (isset($_SESSION['pseudo'])) {echo 'Bienvenue'.$pseudo;} else { echo "Identifiants incorrects"; ?> <html> et là j'aimerais afficher mon formulaire html </html> <?php } ?>
OU:
<?php if (isset($_SESSION['pseudo'])) {echo 'Bienvenue'.$pseudo;} else { echo "Identifiants incorrects"; echo"<html>"; echo"et là j'aimerais afficher mon formulaire html"; echo"</html>"; } ?>
28_seb
Messages postés
84
Date d'inscription
dimanche 22 octobre 2006
Statut
Membre
Dernière intervention
31 mai 2010
11
5 juin 2009 à 12:28
5 juin 2009 à 12:28
<?php
if (isset($_SESSION['pseudo'])) {echo 'Bienvenue'.$pseudo;}
else
{
echo "Identifiants incorrects";
}
?>
<html>
et là j'aimerais afficher mon formulaire html
</html>
++
if (isset($_SESSION['pseudo'])) {echo 'Bienvenue'.$pseudo;}
else
{
echo "Identifiants incorrects";
}
?>
<html>
et là j'aimerais afficher mon formulaire html
</html>
++