Executer page html

Fermé
ahmed - Modifié par ahmed le 28/05/2011 à 01:07
ratikuss Messages postés 1996 Date d'inscription vendredi 8 juin 2007 Statut Membre Dernière intervention 14 décembre 2016 - 30 mai 2011 à 08:33
Bonjour,



comment en peut faire un appel a un page (""recherch.php "") dans une page .html
et merci
A voir également:

2 réponses

le hollandais volant Messages postés 4998 Date d'inscription samedi 8 mars 2008 Statut Membre Dernière intervention 23 décembre 2023 1 057
28 mai 2011 à 19:05
Salut, peut-être avec une iFrame ?

<iframe src="recherch.php" style="width:300px;height:200px;"></iframe>
0
merci pour votre reponse
mais cette page ne s'affiche pas avec la taille de

<td><iframe src="recherch.php" style="width:300px;height:200px;"></iframe></td>
je veut que la page de recherche soit sur tout l'interface de la case <td></td>
0
le hollandais volant Messages postés 4998 Date d'inscription samedi 8 mars 2008 Statut Membre Dernière intervention 23 décembre 2023 1 057
29 mai 2011 à 18:45
Ben utilises un "width: 100%;height:100%;"
0
<td class="base_txt" width="100%"><p> <iframe src="recherche.php" style="width: 100%;height:100%;"></iframe> </p></td>
aussi ce code ça marche pas
et merci
0
le hollandais volant Messages postés 4998 Date d'inscription samedi 8 mars 2008 Statut Membre Dernière intervention 23 décembre 2023 1 057
29 mai 2011 à 19:34
<td class="base_txt" style="width:100%;"><p> <iframe src="recherche.php" style="width: 100%;height:100%;"></iframe> </p></td>
0
desole pou la derangement mais tou jour la meme probleme
la page recherche .php apparetre mais pas dans la surface total de <td></td>
et merci
0
ratikuss Messages postés 1996 Date d'inscription vendredi 8 juin 2007 Statut Membre Dernière intervention 14 décembre 2016 262
30 mai 2011 à 08:33
Pourquoi faire compliquer quand on peut faire simple ? :-)
change ton fichier page.html en page.php
ensuite dedans tu mets dedans :
<?php include('recherch.php'); ?>
0