Insérer script html dans une page PHP
Fermé
Vorochilov
Messages postés
71
Date d'inscription
dimanche 31 août 2008
Statut
Membre
Dernière intervention
30 juillet 2010
-
30 juil. 2010 à 15:47
Vorochilov Messages postés 71 Date d'inscription dimanche 31 août 2008 Statut Membre Dernière intervention 30 juillet 2010 - 30 juil. 2010 à 16:06
Vorochilov Messages postés 71 Date d'inscription dimanche 31 août 2008 Statut Membre Dernière intervention 30 juillet 2010 - 30 juil. 2010 à 16:06
A voir également:
- Insérer script html dans une page PHP
- Supprimer une page word - Guide
- Insérer une vidéo dans powerpoint - Guide
- Script vidéo youtube - Guide
- Insérer signature word - Guide
- Insérer liste déroulante excel - Guide
3 réponses
Dr.W
Messages postés
390
Date d'inscription
jeudi 15 avril 2010
Statut
Membre
Dernière intervention
29 juin 2011
40
Modifié par Dr.W le 30/07/2010 à 15:57
Modifié par Dr.W le 30/07/2010 à 15:57
tu fais un echo de ton code HTML
echo "<html> ton code </html>"
echo "<html> ton code </html>"
il faut que ta page aie une extension .php
<?php
//les instructions à executer mais pas d'affichage
fonction
variable etc
?>
<html>
<head>
</head>
<body>
<?php
///tout ce qui s'affiche en html
echo '<p>$variable / ou bien un text</p>'
?>
</body>
</html>
<?php
//les instructions à executer mais pas d'affichage
fonction
variable etc
?>
<html>
<head>
</head>
<body>
<?php
///tout ce qui s'affiche en html
echo '<p>$variable / ou bien un text</p>'
?>
</body>
</html>
Vorochilov
Messages postés
71
Date d'inscription
dimanche 31 août 2008
Statut
Membre
Dernière intervention
30 juillet 2010
1
30 juil. 2010 à 16:06
30 juil. 2010 à 16:06
Merci, j'essaie ça :)