A voir également:
- Dreamweaver , regions repetés
- Régions polaires - Guide
- Dreamweaver tutorial français pdf - Forum Webmastering
- Cette option de connexion est désactivée en raison des échecs des tentatives de connexion ou des arrêts répétés. utilisez une autre option de connexion ou laissez votre appareil allumé pendant au moins 2 heures, puis réessayez. - Forum Windows 10
- Mon accès à snapchat est désactivé en raison d'échecs répétés de tentatives de connexion ou d'autres activités suspectes ✓ - Forum Snapchat
- En raison d'échecs répétés ou d'autres activités inhabituelles, votre accès à snapchat est temporairement désactivé. - Forum Snapchat
3 réponses
kadeh
Messages postés
334
Date d'inscription
vendredi 21 décembre 2007
Statut
Membre
Dernière intervention
15 novembre 2012
92
24 mai 2011 à 02:18
24 mai 2011 à 02:18
Bonjour,
pouvez-vous mettre le code source que vous utilisez pour afficher les données?
utilisez la balise code svp.
@+
pouvez-vous mettre le code source que vous utilisez pour afficher les données?
utilisez la balise code svp.
@+
<?php require_once('Connections/connector.php'); ?> <?php mysql_select_db($database_connector, $connector); $query_afficherresults = "SELECT * FROM vbysr_vidyo"; $afficherresults = mysql_query($query_afficherresults, $connector) or die(mysql_error()); $row_afficherresults = mysql_fetch_assoc($afficherresults); $totalRows_afficherresults = mysql_num_rows($afficherresults); ?><!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>Untitled Document</title> </head> <body> <table width="100%" border="0" cellspacing="1"> <tr> <?php do { ?> <th width="11%" scope="col"><img src="miniature/<?php echo $row_afficherresults['video_link']; ?>.png" width="94" height="83" /></th> <th width="11%" scope="col"><?php echo $row_afficherresults['video_title']; ?></th> <?php } while ($row_afficherresults = mysql_fetch_assoc($afficherresults)); ?><th width="78%" scope="col"> </th> </tr> </table> </body> </html> <?php mysql_free_result($afficherresults); ?>
kadeh
Messages postés
334
Date d'inscription
vendredi 21 décembre 2007
Statut
Membre
Dernière intervention
15 novembre 2012
92
24 mai 2011 à 04:59
24 mai 2011 à 04:59
si j'ai bien compris:
@+
<table width="100%" border="0" cellspacing="1"> <tr> <th width="11%" scope="col">Video Link</th> <th width="11%" scope="col">Video Title</th> <th width="78%" scope="col"></th> </tr> <?php do { ?> <tr> <td><img src="miniature/<?php echo $row_afficherresults['video_link']; ?>.png" width="94" height="83" /></td> <td><?php echo $row_afficherresults['video_title']; ?></td> <td></td> </tr> <?php } while ($row_afficherresults = mysql_fetch_assoc($afficherresults)); ?> </table>
@+
24 mai 2011 à 02:40