Je suis en train de travailler sur un espace membre mais je n'arrive pas a recuperer les information depuis ma BDD SQL de phpmyadmin.
Donc ma table est nommé ==> MEMBRE
Mon champ est nommé ==> TESTE
donc voici le fichier MEMBRE.PHP que je voudrais utiliser je voudrais recuperer dans la value du champ de formulaire plus bas l'info dans ma base SQL
Code : Tout sélectionner
<?php
session_start();
if (!isset($_SESSION['login'])) {
header ('Location: index.php');
exit();
}
?>
<html>
<head>
<title>Espace membre</title>
</head>
<body><center>
Bienvenue <?php echo htmlentities(trim($_SESSION['login'])); ?> !<br />
<br />
<br />
<br />
<tr>
<td><input size="50" name="screen" value="?????????? ICI ??????????????" type="text"></td>
</tr>
</tbody></table>
<a href="deconnexion.php">Déconnexion</a></center>
</body>
</html>
comment dois je proceder ?