Jump to content

Recommended Posts

plz, need help urgently

 

Am new bie to php and mysql...

My question is : How to display all the names from database table in a marquee function, which directs from down-to-up.

 

$query=mysql_query("select * from employee where status='Active'");

$num=mysql_num_rows($query);

 

while($row=mysql_fetch_object($query))

{

$list .= $row->names;

echo substr($list, 0);

}

by using these query, it displays only last record of the table.

plz help me out, how to display all the names from the db.

Link to comment
https://forums.phpfreaks.com/topic/148580-marquee-with-mysql-and-php/
Share on other sites

You will need to edit the select query and the hyperlink as I dont know you field names or filenames

 

$query=mysql_query("SELECT id, names FROM employee WHERE status='Active'");
$names = array();
while($row = mysql_fetch_object($query)) {   
   $names[] = "<a href='myfile.php?id=".$row->id."'>".$row->names."</a>";
}
echo implode(", ", $names);

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.