Jump to content

Marquee with MySQL and PHP


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);

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.