Comment programmer mon code pour afficher un article complet
Résolu/Fermé
ghisloy
Messages postés
89
Date d'inscription
mercredi 12 novembre 2014
Statut
Membre
Dernière intervention
1 août 2016
-
8 nov. 2015 à 16:44
ghisloy Messages postés 89 Date d'inscription mercredi 12 novembre 2014 Statut Membre Dernière intervention 1 août 2016 - 10 nov. 2015 à 18:59
ghisloy Messages postés 89 Date d'inscription mercredi 12 novembre 2014 Statut Membre Dernière intervention 1 août 2016 - 10 nov. 2015 à 18:59
A voir également:
- Comment programmer mon code pour afficher un article complet
- Code asci - Guide
- Code puk bloqué - Guide
- Telechargement film d'action complet en francais - Télécharger - TV & Vidéo
- Comment créer un qr code - Guide
- Code telephone oublié - Guide
1 réponse
samyb2313
Messages postés
52
Date d'inscription
mercredi 23 février 2011
Statut
Membre
Dernière intervention
15 janvier 2020
5
9 nov. 2015 à 11:48
9 nov. 2015 à 11:48
Créer une page article qui affiche la totalité de ton article !
href='monsite?article=12'
href='monsite?article=12'
9 nov. 2015 à 23:17
<code sql> <?php
$lire=isset($_GET['lire'])?$_GET['lire']:0;
$sql="SELECT * FROM `actualites` WHERE md5(numero)='$lire' LIMIT 1;"; $r=$mysql->run($sql);
if(count($r)==0){
$sql="SELECT * FROM `actualites` WHERE 1 ORDER BY publie DESC LIMIT 10 ;";
$r=$mysql->run($sql); echo $mysql->error; for($i=0; $i<count($r); $i++){?>
<div style="margin-bottom:10px;">
<a style="color:#999;" href="<?php echo $UP; ?>htdocs/actualites/?lire=one&id=<?php echo md5($r[$i]["numero"]) ?>">
<img src="<?php echo $UP; ?>images/actualites/<?php echo $r[$i]['image']; ?>" width="200" style="float:left; margin-right:10px;"></a>
<h3 style="font-size:17px; margin-bottom:0; padding-bottom:5px;">
<a style="color:#999; text-decoration:none;" href="<?php echo $UP; ?>htdocs/Actualites/?lire=one&id=<?php echo md5($r[$i]["numero"]) ?>">
<strong style="color:#1182B5; font-weight:bold; font-size:16px;"><?php echo stripslashes($r[$i]['titre']); ?></strong></a>
</h3>
<?php echo $func->fDate(substr($r[$i]["publie"], 0, 10)) ?><br>
</div><?php
cependant je recois l'erreur que voici: ''Notice: Undefined variable: mysql in C:\Program Files (x86)\EasyPHP-12.1\www\ESTABAT_LOME\htdocs\Actualites\index.php on line 45
Fatal error: Call to a member function run() on a non-object in C:\Program Files (x86)\EasyPHP-12.1\www\ESTABAT_LOME\htdocs\Actualites\index.php on line 45'' NB: ma ligne 45 est celle sur laquelle il y select * from actualites
Modifié par samyb2313 le 10/11/2015 à 14:43
$r=$mysql->run($sql);
Ton code met le entre les balise <code > c'est plus lisible !
Il ne connait pas la function run ! il ne connait pas $mysql !!!
10 nov. 2015 à 18:59