betsy_ls Posted October 23, 2009 Share Posted October 23, 2009 I am not sure if this is the correct forum to post this on. If not, I apologize. I am still pretty new to PHP. I am editing a website for a friend. He had a news headlines section on his home page, but wants to change it to a news bar that scrolls through the most recent news on their database. I have been searching for help online for this and have felt like I was close, but never quite found what I needed (especially since I am new to this). I found this tutorial (http://www.dynamicdrive.com/dynamicindex2/crosstick.htm), which is what I want... except that I don't want to use an Array for the headlines, but I want it to pull from my database. Is there an easy way for me to do this? I already have a php file from the previous news headlines section, but am not sure how to get that to work with this new code. Here is the code for the previous headlines... <div id="news"> <?php getHeadlines(); /* include("admin/nCMS/nSQL.php"); $db = new nSQL("local"); $q = "SELECT nDate, nTitle FROM `gtt_news` ORDER BY nDate DESC LIMIT 5;" $r = $db->select($q); while($data = $db->get_row()) { echo "<div class=\"newsitem\">"; echo "<p class=\"text\"><a href=\"#\">.$data['nTitle'].</a></p>"; echo "</div>"; } */ ?> </div> Please let me know if any other code is needed. Thanks so much for your help. Quote Link to comment https://forums.phpfreaks.com/topic/178700-scrolling-news-bar-and-mysql/ Share on other sites More sharing options...
kickstart Posted October 23, 2009 Share Posted October 23, 2009 Hi If you want a scrolling news bar then you need to have the news items listed. Probably in an array in Javascript. You can use similar code to the stuff you posted to populate the array. However this will just provide a single list on the page. If you want the list to change then you need to refresh it. For this you need to use Ajax to call a php script and return data to update the array. Sorry, doesn't really answer your question, but I think we need more details to help you. The SQL is the easy bit. All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/178700-scrolling-news-bar-and-mysql/#findComment-942739 Share on other sites More sharing options...
betsy_ls Posted October 23, 2009 Author Share Posted October 23, 2009 I am trying to make a news bar like Xerox has (at the bottom of the page) http://www.xerox.com/. Are they using Ajax to call the php script? Quote Link to comment https://forums.phpfreaks.com/topic/178700-scrolling-news-bar-and-mysql/#findComment-942950 Share on other sites More sharing options...
kickstart Posted October 23, 2009 Share Posted October 23, 2009 Hi Looks like they just have a fixed output and the scroller won't change until you reload the page. All the best Keith Quote Link to comment https://forums.phpfreaks.com/topic/178700-scrolling-news-bar-and-mysql/#findComment-942960 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.