Jump to content

Display all results from a table ...


Recommended Posts

Hi,

 

I'm a beginner with php, MySql with dreamweaver !

 

I would like display all informations (rows and columns) from one of my sql "table".

But with my code, I can only display one record.

So I think I must use a "while", but is someone could say to me the exact code and emplacement I must write please. As this I could understand exactly that for future request.

 

This is my code :

 

<?php require_once('../Connections/transefusion.php'); ?>

<?php

mysql_select_db($database_transefusion, $transefusion);

$query_tab_comment_test = "SELECT * FROM tab_commentaire ORDER BY `date` DESC";

$tab_comment_test = mysql_query($query_tab_comment_test, $transefusion) or die(mysql_error());

$row_tab_comment_test = mysql_fetch_assoc($tab_comment_test);

$totalRows_tab_comment_test = mysql_num_rows($tab_comment_test);

?>

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>

 

<body>

<font size="-5"><font color="#FF0000" size="3"><strong><?php echo $row_tab_comment_test['nom']; ?></strong></font> </font><br>

<em><font color="#00CCFF" size="2"></font></em>

</body>

</html>

<?php

mysql_free_result($tab_comment_test);

?>

 

Thanks a lot.

Bruno.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.