AU SECOUR Erreur php que je ne comprends pas...
- Accueil
- Forum
- Programmation
- PHP
- AU SECOUR Erreur php que je ne comprends pas...
Mr_moozik Le 15 avril 2017 à 19:16 (Édité le 25 janvier 2019 à 17:53)
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting '-' or identifier (T_STRING) orMon code :
variable (T_VARIABLE) or number (T_NUM_STRING) in /srv/http/architest/includes/forum_topics.view.php on line 21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TUTO</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="css/style.css">
<div class="container">
<table class="table table-striped">
<tr class="header">
<td class="main">Sujet </td>
<td class="sub-info w10">Messages </td>
<td class="sub-info w20">Dernier message </td>
<td class="sub-info w20">Création par</td>
</tr>
<?php while($t = $topics->fetch()) {
$user = $bdd->prepare('SELECT * FROM membres WHERE id = ?');
$user->execute(array($t['id_createur']));
$user = $user->fetch();
$link="topic.php?topic=<?=$t['id']?>";
?>
<tr class="blue">
<td class="main">
<h4><a href="<?= $link ?>"><?= $t['sujet'] ?></a></h4>
<h4><?= $t['id'] ?></h4>
</td>
<td class="sub-info">4083495</td>
<td class="sub-info">25.12.2015 à 18h07<br />de PrimFX</td>
<td class="sub-info"><?= $user['pseudo'] ?></td>
</tr>
<?php } ?>
</table>
<a href="nouveau_topic.php?categorie=<?= $_GET['categorie']?>">Créer un nouveau topic</a>
</div>
</body>
</html>
Merci de votre bonne lecture ;-)
Zbuu Le 15 avril 2017 à 20:13 (Édité le 1 janvier 1970 à 01:00)
$link="topic.php?topic=<?=$t['id']?>";
Ce serait mieux comme ceci : $link = 'topic.php?topic=' . $t['id'];
Mr_moozik Le 15 avril 2017 à 21:14 (Édité le 1 janvier 1970 à 01:00)