sridhar golyandla Posted March 9, 2009 Share Posted March 9, 2009 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 More sharing options...
JonnoTheDev Posted March 9, 2009 Share Posted March 9, 2009 $query=mysql_query("SELECT names FROM employee WHERE status='Active'"); $names = array(); while($row = mysql_fetch_object($query)) { $names[] = $row->names; } echo implode(", ", $names); Link to comment https://forums.phpfreaks.com/topic/148580-marquee-with-mysql-and-php/#findComment-780217 Share on other sites More sharing options...
sridhar golyandla Posted March 9, 2009 Author Share Posted March 9, 2009 It's working well... Thanks to neil.johnson Link to comment https://forums.phpfreaks.com/topic/148580-marquee-with-mysql-and-php/#findComment-780228 Share on other sites More sharing options...
sridhar golyandla Posted March 9, 2009 Author Share Posted March 9, 2009 shall v put hyperlink to each name? and it moves one by one? Link to comment https://forums.phpfreaks.com/topic/148580-marquee-with-mysql-and-php/#findComment-780238 Share on other sites More sharing options...
JonnoTheDev Posted March 9, 2009 Share Posted March 9, 2009 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); Link to comment https://forums.phpfreaks.com/topic/148580-marquee-with-mysql-and-php/#findComment-780242 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.