A voir également:
- PHP
- Easy php - Télécharger - Divers Web & Internet
- Php?id=1 - Forum PHP
- \R php ✓ - Forum PHP
- Php if plusieurs conditions ✓ - Forum PHP
- Echo image php ✓ - Forum PHP
5 réponses
pourquoi pas mai je vais le raccourcir (j'avais pas donné la bonne partis de mon code ):
<?php
$host="127.0.0.1"; // Host name
$username="root"; // Mysql username
$password="root"; // Mysql password
$db_name="forum"; // Database name
$tbl_name="forum_question"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name ORDER BY id DESC";
// OREDER BY id DESC is order result by descending
$result=mysql_query($sql);
?>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>
<td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>
<td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Replies</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Time</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){ // Start looping table row
?>
<tr>
<td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td>
<td bgcolor="#FFFFFF"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['view']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['reply']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['datetime']; ?></td>
</tr>
<?php
// Exit looping and close connection
}
mysql_close();
?>
<tr>
<td colspan="5" align="right" bgcolor="#E6E6E6"><a href="create_topic.php"><strong>Create New Topic</strong> </a></td>
</tr>
</table>
<?php
$host="127.0.0.1"; // Host name
$username="root"; // Mysql username
$password="root"; // Mysql password
$db_name="forum"; // Database name
$tbl_name="forum_question"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name ORDER BY id DESC";
// OREDER BY id DESC is order result by descending
$result=mysql_query($sql);
?>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>
<td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>
<td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Replies</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Time</strong></td>
</tr>
<?php
while($rows=mysql_fetch_array($result)){ // Start looping table row
?>
<tr>
<td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td>
<td bgcolor="#FFFFFF"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['view']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['reply']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['datetime']; ?></td>
</tr>
<?php
// Exit looping and close connection
}
mysql_close();
?>
<tr>
<td colspan="5" align="right" bgcolor="#E6E6E6"><a href="create_topic.php"><strong>Create New Topic</strong> </a></td>
</tr>
</table>
allez ya pu que 46 ligne a lire et mon probleme est le suivant j'extrait l'id et le non utilisateur ainsi que d'autre paramètre de ma bdd dans un tableau c'est ici qu est le probleme mon tableau rajoute une ligne a chaque nouveau sujet mais elles n'apparaissent pas mon tableau fait plein de case vide pourtant mes enregistrement se font bien dans ma bdd
Bonjour,
Quelle est la structure de la table forum_question dans la bdd forum ?
As-tu une erreur retrounée par MySQL ?
Quelle est la structure de la table forum_question dans la bdd forum ?
As-tu une erreur retrounée par MySQL ?
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
non pas d'erreur retourné par mySQL la Table forum_question est structurée ainsi
question_id int(4) Non 0 Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_id int(4) Non 0 Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_name varchar(65) latin1_swedish_ci Non Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_email varchar(65) latin1_swedish_ci Non Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_answer longtext latin1_swedish_ci Non Aucun Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_datetime varchar(25) latin1_swedish_ci
question_id int(4) Non 0 Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_id int(4) Non 0 Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_name varchar(65) latin1_swedish_ci Non Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_email varchar(65) latin1_swedish_ci Non Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_answer longtext latin1_swedish_ci Non Aucun Affiche les valeurs distinctes Modifier Supprimer Primaire Unique Index Texte entier
a_datetime varchar(25) latin1_swedish_ci