PHP|Débutant :: Forums

Advertisement

Besoin d'aide ? N'hésitez pas, mais respectez les règles

Vous n'êtes pas identifié(e).

#1 Forum Général PHP » j'arrive pas a exécuter ma page php quand je la connect a la BD » 18-11-2011 11:31:50

fidelix
Réponses : 2

je suis debutante et je suis bloquée depuis 5 jrs

<!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=iso-8859-1" />
<title>Document sans titre</title>
<style type="text/css">
<!--
.Style1 {    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #00CC00;
}
-->
</style>
</head>

<body>
<?php include("configure.inc"); ?>
<form method="post" action="validroit.php">

<table width="80%" border="1" align="center" cellpadding="10px">
  <tr>
    <td colspan="2"><div align="center" class="Style1">ATTRIBUTION DE DROIT </div></td>
  </tr>
  <tr>
    <td width="43%">TYPE DE DOCUMENT </td>
    <td width="57%"><select name="doctype" style="width:350px">
     
    </select></td>
  </tr>
  <tr>
    <td height="61">NIVEAU D'UTILISATION </td>
    <td><select name="niveau" style="width:100px">


      <?php echo "mama";
     

      
                     $req=mysql_query("SELECT niveau FROM utilisateur GROUP BY niveau");
                     $a=mysql_fetch_array($req);
                     while ($a)
                       {
                    
                       echo '<option value="'.$a['niveau'].'">'.$a['niveau'].'</option>';
                       }
               
                     ?>
    </select></td>
  </tr>
  <tr>
    <td rowspan="5">DROIT</td>
    <td><input type="checkbox" name="droit[]" />
      Création </td>
  </tr>
  <tr>
    <td><input type="checkbox" name="droit[]" />
      Validation </td>
  </tr>
  <tr>
    <td><input type="checkbox" name="droit[]" />
      consultation unique </td>
  </tr>
  <tr>
    <td><input type="checkbox" name="droit[]" />
      Modification et Consultation </td>
  </tr>
  <tr>
    <td><input type="checkbox" name="droit[]" />
      Suppression</td>
  </tr>
  <tr>
    <td> </td>
    <td align="center"><input type="submit" name="valider" value="Valider" /></td>
  </tr>
  <tr>
    <td> </td>
    <td> </td>
  </tr>
</table>

</form>
</body>
</html>

Pied de page des forums

Propulsé par FluxBB