IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

formulaire select et affichage resultat


Sujet :

Langage PHP

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Novembre 2002
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2002
    Messages : 25
    Par défaut formulaire select et affichage resultat
    Bonsoir ,
    j'ai un peu de mal à terminer ma requête si vous avez un peu de temps pour y jetter un oeil svp.

    voici l'ambiance :
    une base vin
    3 table :
    region
    plat (recettes)
    produit

    le produit comporte un nom, une region, une recette, un prix


    mon but est d'afficher les produits en fonction du choix valide par le formulaire .

    script du formulaire :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    <?php require_once('Connections/pinard_connect.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }
     
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
     
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
     
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_Rs_region = "SELECT * FROM region ORDER BY region ASC";
    $Rs_region = mysql_query($query_Rs_region, $pinard_connect) or die(mysql_error());
    $row_Rs_region = mysql_fetch_assoc($Rs_region);
    $totalRows_Rs_region = mysql_num_rows($Rs_region);
     
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_RsPlat = "SELECT * FROM categorie ORDER BY plat ASC";
    $RsPlat = mysql_query($query_RsPlat, $pinard_connect) or die(mysql_error());
    $row_RsPlat = mysql_fetch_assoc($RsPlat);
    $totalRows_RsPlat = mysql_num_rows($RsPlat);
     
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_RsPrix = "SELECT prix FROM produit ORDER BY prix ASC";
    $RsPrix = mysql_query($query_RsPrix, $pinard_connect) or die(mysql_error());
    $row_RsPrix = mysql_fetch_assoc($RsPrix);
    $totalRows_RsPrix = mysql_num_rows($RsPrix);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>recherche</title>
    <style type="text/css">
    h1 {
                text-align:center;}
    form {
                margin: 0 33%;
    }
    fieldset {
                padding: 15px;
                border: 1px solid #F00;
    }
    label {
                display:inline;
                float:left;
                width: 125px;
                font: bold 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
    }
    </style>
    </head>
     
    <body>
    <form id="form1" name="form1" method="post" action="resultat.php">
    <fieldset>
    	<p>
    <label>Region : </label>
    <select name="VARregion" id="VARregion">
      <?php
    do {  
    ?>
      <option value="<?php echo $row_Rs_region['region']?>"><?php echo $row_Rs_region['region']?></option>
      <?php
    } while ($row_Rs_region = mysql_fetch_assoc($Rs_region));
      $rows = mysql_num_rows($Rs_region);
      if($rows > 0) {
          mysql_data_seek($Rs_region, 0);
    	  $row_Rs_region = mysql_fetch_assoc($Rs_region);
      }
    ?>
    </select>
    	</p>
        <p>
    <label>Plat : </label>
    <select name="VARplat" id="VARplat">
      <?php
    do {  
    ?>
      <option value="<?php echo $row_RsPlat['plat']?>"><?php echo $row_RsPlat['plat']?></option>
      <?php
    } while ($row_RsPlat = mysql_fetch_assoc($RsPlat));
      $rows = mysql_num_rows($RsPlat);
      if($rows > 0) {
          mysql_data_seek($RsPlat, 0);
    	  $row_RsPlat = mysql_fetch_assoc($RsPlat);
      }
    ?>
    </select>
    	</p>
        <p>
    <label>Prix : </label>
    <select name="VARprix" id="VARprix">
      <?php
    do {  
    ?>
      <option value="<?php echo $row_RsPrix['prix']?>"><?php echo $row_RsPrix['prix']?></option>
      <?php
    } while ($row_RsPrix = mysql_fetch_assoc($RsPrix));
      $rows = mysql_num_rows($RsPrix);
      if($rows > 0) {
          mysql_data_seek($RsPrix, 0);
    	  $row_RsPrix = mysql_fetch_assoc($RsPrix);
      }
    ?>
    </select>
    	</p>
        <p>
    <input type="submit" name="envoi" id="envoi" value="Envoyer" />
    	</p>
    </fieldset>
    </form>
    </body>
    </html>
    <?php
    mysql_free_result($Rs_region);
     
    mysql_free_result($RsPlat);
     
    mysql_free_result($RsPrix);
    ?>
    et voici ma page resultat
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    <?php require_once('Connections/pinard_connect.php'); ?>
    <?php
    $envoi = $_GET['VARregion'],['VARprix'],['VARplat'];
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }
     
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
     
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
     
    $maxRows_Recordset1 = 10;
    $pageNum_Recordset1 = 0;
    if (isset($_GET['pageNum_Recordset1'])) {
      $pageNum_Recordset1 = $_GET['pageNum_Recordset1'];
    }
    $startRow_Recordset1 = $pageNum_Recordset1 * $maxRows_Recordset1;
     
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_Recordset1 = "SELECT * FROM produit WHERE region = $row_Rs_region['VARregion'] AND prix <= $row_RsPrix['VARprix'] AND plat = $row_RsPlat['VARplat']";
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $pinard_connect) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
     
    if (isset($_GET['totalRows_Recordset1'])) {
      $totalRows_Recordset1 = $_GET['totalRows_Recordset1'];
    } else {
      $all_Recordset1 = mysql_query($query_Recordset1);
      $totalRows_Recordset1 = mysql_num_rows($all_Recordset1);
    }
    $totalPages_Recordset1 = ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Document sans titre</title>
    </head>
     
    <body>
    <table border="0">
      <tr>
        <td>id</td>
        <td>nom</td>
        <td>region</td>
        <td>plat</td>
        <td>prix</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_Recordset1['id']; ?></td>
          <td><?php echo $row_Recordset1['nom']; ?></td>
          <td><?php echo $row_Recordset1['region']; ?></td>
          <td><?php echo $row_Recordset1['plat']; ?></td>
          <td><?php echo $row_Recordset1['prix']; ?></td>
        </tr>
        <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    je bloque sur la récupération des variables .

    merci par avance

  2. #2
    Membre confirmé
    Profil pro
    Inscrit en
    Octobre 2010
    Messages
    104
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Maritime (Haute Normandie)

    Informations forums :
    Inscription : Octobre 2010
    Messages : 104
    Par défaut
    pas très clair je trouve.

    qu'est ce qui ne fonctionne pas exactement ?

    dans ton resultat.php :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_Recordset1 = "SELECT * FROM produit WHERE region = $row_Rs_region['VARregion'] AND prix <= $row_RsPrix['VARprix'] AND plat = $row_RsPlat['VARplat']";
    $query_limit_Recordset1 = sprintf("%s LIMIT %d, %d", $query_Recordset1, $startRow_Recordset1, $maxRows_Recordset1);
    $Recordset1 = mysql_query($query_limit_Recordset1, $pinard_connect) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    tu cherches à faire un SELECT suivant les valeurs retournées de ton formulaire ? ( region,plat,prix )

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Novembre 2002
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2002
    Messages : 25
    Par défaut mise à jour
    je reviens sur mon petit exercice que j'ai un peu modifié
    en effet j'ai un formulaire avec 3 boites de menu déroulant et un bouton submit.
    avec ces trois choix je veux afficher dans ma page résultat les vins répondant à ces trois critères sélectionnés (region, plat et prix.)
    je vous retransmet les 2 scripts :

    celui du formulaire :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    <?php require_once('Connections/pinard.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }
     
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
     
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
     
    mysql_select_db($database_pinard, $pinard);
    $query_recherchervin = "SELECT * FROM produit ORDER BY nom ASC";
    $recherchervin = mysql_query($query_recherchervin, $pinard) or die(mysql_error());
    $row_recherchervin = mysql_fetch_assoc($recherchervin);
    $totalRows_recherchervin = mysql_num_rows($recherchervin);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Document sans titre</title>
    </head>
     
    <body>
    <p>Rechercher votre vin</p>
    <form id="form1" name="form1" method="post" action="resultatvinbis.php">
      <p>
        <label>choisissez la region
          <select name="listeregion" size="1" id="listeregion" accesskey="a" tabindex="1">
            <option value="bordeaux" selected="selected">bordeaux</option>
            <option value="corbiere">corbiere</option>
            <option value="languedoc">languedoc</option>
            <option value="bourgogne">bourgogne</option>
          </select>
        </label> 
        <label>choisissez votre menu
          <select name="listeplat" size="1" id="listeplat" accesskey="b" tabindex="2">
            <option value="entree" selected="selected">entree</option>
            <option value="plat">plat</option>
            <option value="dessert">dessert</option>
          </select>
        </label>
        <label>choisissez votre budget
          <select name="listeprix" size="1" id="listeprix" accesskey="c" tabindex="3">
            <option value="0" selected="selected">0</option>
            <option value="5">5</option>
            <option value="7">7</option>
            <option value="10">10</option>
            <option value="15">15</option>
            <option value="18">18</option>
            <option value="20">20</option>
          </select>
        </label>
      </p>
      <p>
        <label>
          <input type="submit" name="valider" id="valider" value="Envoyer" accesskey="z" tabindex="4" />
        </label>
      </p>
    </form>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($recherchervin);
    ?>
    et celui de ma page résultat :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    <?php require_once('Connections/pinard_connect.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      }
     
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
     
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
     
    $maxRows_recherchervin = 10;
    $pageNum_recherchervin = 0;
    if (isset($_GET['pageNum_recherchervin'])) {
      $pageNum_recherchervin = $_GET['pageNum_recherchervin'];
    }
    $startRow_recherchervin = $pageNum_recherchervin * $maxRows_recherchervin;
     
    $colname_recherchervin = "-1";
    if (isset($_POST['listeregion'])) {
      $colname_recherchervin = $_POST['listeregion'];
    }
    $colname_recherchervin = "-1";
    if (isset($_POST['listeplat'])) {
      $colname_recherchervin = $_POST['listeplat'];
    }
    $colname_recherchervin = "-1";
    if (isset($_POST['listeprix'])) {
      $colname_recherchervin = $_POST['listeprix'];
    }
    mysql_select_db($database_pinard_connect, $pinard_connect);
    $query_recherchervin = sprintf("SELECT * FROM produit WHERE region = %s AND produit.plat AND produit.prix", GetSQLValueString($colname_recherchervin, "text"));
    $query_limit_recherchervin = sprintf("%s LIMIT %d, %d", $query_recherchervin, $startRow_recherchervin, $maxRows_recherchervin);
    $recherchervin = mysql_query($query_limit_recherchervin, $pinard_connect) or die(mysql_error());
    $row_recherchervin = mysql_fetch_assoc($recherchervin);
     
    if (isset($_GET['totalRows_recherchervin'])) {
      $totalRows_recherchervin = $_GET['totalRows_recherchervin'];
    } else {
      $all_recherchervin = mysql_query($query_recherchervin);
      $totalRows_recherchervin = mysql_num_rows($all_recherchervin);
    }
    $totalPages_recherchervin = ceil($totalRows_recherchervin/$maxRows_recherchervin)-1;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Document sans titre</title>
    </head>
     
    <body>
    <p>Rechercher votre vin</p>
    <form id="form1" name="form1" method="post" action="resultatvinbis.php">
      <p>
        <label>choisissez la region
          <select name="listeregion" size="1" id="listeregion" accesskey="a" tabindex="1">
            <option value="bordeaux" selected="selected">bordeaux</option>
            <option value="corbiere">corbiere</option>
            <option value="languedoc">languedoc</option>
            <option value="bourgogne">bourgogne</option>
          </select>
        </label> 
        <label>choisissez votre menu
          <select name="listeplat" size="1" id="listeplat" accesskey="b" tabindex="1">
            <option value="entree" selected="selected">entree</option>
            <option value="plat">plat</option>
            <option value="dessert">dessert</option>
          </select>
        </label>
        <label>choisissez votre budget
          <select name="listeprix" size="1" id="listeprix" accesskey="c" tabindex="1">
            <option value="0" selected="selected">0</option>
            <option value="5">5</option>
            <option value="7">7</option>
            <option value="10">10</option>
            <option value="15">15</option>
            <option value="18">18</option>
            <option value="20">20</option>
          </select>
        </label>
      </p>
      <p>
        <label>
          <input type="submit" name="valider" id="valider" value="Envoyer" accesskey="z" tabindex="4" />
        </label>
      </p>
    </form>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <table border="0">
      <tr>
        <td>id</td>
        <td>nom</td>
        <td>region</td>
        <td>plat</td>
        <td>prix</td>
        <td>image</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_recherchervin['id']; ?></td>
          <td><?php echo $row_recherchervin['nom']; ?></td>
          <td><?php echo $row_recherchervin['region']; ?></td>
          <td><?php echo $row_recherchervin['plat']; ?></td>
          <td><?php echo $row_recherchervin['prix']; ?></td>
          <td><img src="<?php echo $row_recherchervin['image']; ?>" alt="photo" /></td>
        </tr>
        <?php } while ($row_recherchervin = mysql_fetch_assoc($recherchervin)); ?>
    </table>
    </body>
    </html>
    <?php
    mysql_free_result($recherchervin);
    ?>

  4. #4
    Membre chevronné
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    329
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Octobre 2004
    Messages : 329
    Par défaut
    Si tu nous expliquais un peu plus précisément ce qui te bloque exactement ?

  5. #5
    Membre averti
    Profil pro
    Inscrit en
    Novembre 2002
    Messages
    25
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2002
    Messages : 25
    Par défaut precision
    ce qui me bloque est que ma page résultat s'affiche toujours vide.
    lorsque je fais la même démarche avec un formulaire doté d'un seul menu de sélection je n'ai pas de soucis mais dès que j'en ai 2 ou 3 ma page résultat s'affiche vide .

  6. #6
    Membre chevronné
    Profil pro
    Inscrit en
    Octobre 2004
    Messages
    329
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations forums :
    Inscription : Octobre 2004
    Messages : 329
    Par défaut
    complètement vide ? Genre même pas la partie html statique ? Ou juste ta boucle
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     while ($row_recherchervin = mysql_fetch_assoc($recherchervin);
    qui ne tourne pas ?

Discussions similaires

  1. Réponses: 6
    Dernier message: 29/10/2010, 16h26
  2. [MySQL] Formulaire recherche et affichage des resultats
    Par omariovich dans le forum PHP & Base de données
    Réponses: 1
    Dernier message: 15/07/2008, 08h13
  3. selection fichier et affichage resultat
    Par john123 dans le forum Excel
    Réponses: 4
    Dernier message: 15/06/2007, 08h21
  4. Réponses: 7
    Dernier message: 05/01/2007, 12h24
  5. Réponses: 16
    Dernier message: 27/10/2006, 16h12

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo