Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 931c6392b819403d7d7f1cb562572d00cef97500
  • master par défaut protégée
2 résultats

README.md

Blame
  • Bifurcation depuis Nassim YAICI / projet_web
    Le projet source a une visibilité limitée.
    Pour en savoir plus sur ce projet, lisez le wiki.
    display.html 476 o
    <!DOCTYPE html>
    <html>
    <head>
    	<meta charset="utf-8"/>
    	<title>Exemple de profil</title>
    </head>
    <body>
    	<header>
    		<h1>Affichage d'un profil</h1>
    	</header>
    	<h2>Voici le profil de quelqu'un</h2>
    	<h3>Il s'agit du profil de <?php echo $this->profil->pseudo; ?></h3>
    	<p>Et on dit "Bonjour <?php echo $this->profil->pseudo; ?> ! :o)</p>
    	<p>Il a été appelé avec le slug : <?php echo $this->profil->slug; ?></p>
    	<footer>
    		<p>Le pied de page</p>
    	</footer>
    </body>
    </html>