Executer page html

ahmed -  
ratikuss Messages postés 1996 Date d'inscription   Statut Membre Dernière intervention   -
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   Statut Membre Dernière intervention   1 057
 
Salut, peut-être avec une iFrame ?

<iframe src="recherch.php" style="width:300px;height:200px;"></iframe>
0
ahmed
 
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   Statut Membre Dernière intervention   1 057
 
Ben utilises un "width: 100%;height:100%;"
0
ahmed
 
<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   Statut Membre Dernière intervention   1 057
 
<td class="base_txt" style="width:100%;"><p> <iframe src="recherche.php" style="width: 100%;height:100%;"></iframe> </p></td>
0
ahmed
 
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   Statut Membre Dernière intervention   262
 
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