Executer page html

ahmed -  
ratikuss Messages postés 56 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

2 réponses

  1. le hollandais volant Messages postés 5294 Statut Membre 1 059
     
    Salut, peut-être avec une iFrame ?

    <iframe src="recherch.php" style="width:300px;height:200px;"></iframe>
    0
    1. 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
    2. le hollandais volant Messages postés 5294 Statut Membre 1 059
       
      Ben utilises un "width: 100%;height:100%;"
      0
    3. 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
    4. le hollandais volant Messages postés 5294 Statut Membre 1 059
       
      <td class="base_txt" style="width:100%;"><p> <iframe src="recherche.php" style="width: 100%;height:100%;"></iframe> </p></td>
      0
    5. 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
  2. ratikuss Messages postés 56 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