Lien de profil
- Accueil
- Forum
- Programmation
- PHP
- Lien de profil
jultancrez Le 7 juin 2017 à 20:00 (Édité le 25 janvier 2019 à 17:53)
jultancrez Le 10 juin 2017 à 11:26 (Édité le 10 juin 2017 à 11:28)
jultancrez Le 10 juin 2017 à 11:29 (Édité le 10 juin 2017 à 11:30)
session_start();
include_once "../class/db_class.php";
if(isset($_GET['name'] {
$getid = $_GET['name'];
$requser = $bdd->prepare('SELECT * FROM membres WHERE pseudo= ?');
$requser->execute(array($getid));
$userinfo = $requser->fetch();
?>
<html>
<head>
<title>TUTO PHP</title>
<meta charset="utf-8">
</head>
<body>
<div align="center">
<h2>Profil de <?php echo $userinfo['pseudo']; ?></h2>
<br /><br />
Pseudo = <?php echo $userinfo['pseudo']; ?>
<br />
Mail = <?php echo $userinfo['mail']; ?>
<br />
<?php
if(isset($_SESSION['id']) AND $userinfo['id'] == $_SESSION['id']) {
?>
<br />
<a href="editionprofil.php">Editer mon profil</a>
<a href="deconnexion.php">Se déconnecter</a>
<?php
}
?>
</div>
</body>
</html>
<?php
}
?>