Far Cry Posted May 19, 2011 Share Posted May 19, 2011 Okay so currently I have this, I am stuck however, how can I get the data (that depending on the links id) to show fade into the news div? Where do I go from here? Thanks in advance <div id="news_container"> <div class="links"> <h3>Latest News Updates</h3> <br /> <br /> <br /> <?php $query = mysql_query("SELECT * FROM news ORDER BY id DESC LIMIT 5") or trigger_error('Error: ' . mysql_error()); $numrows = mysql_num_rows($query); if ($numrows > 0){ while ($row = mysql_fetch_assoc($query)){ $title = $row['title']; $id = $row['id']; $content = nl2br($row['content']); $date = $row['date']; $by = $row['by']; echo"<a href=\"news.php?id=$id\" id=\"$id\">$title</a><br>"; } } ?> </div> <div id="news"> </div> </div> Link to comment https://forums.phpfreaks.com/topic/236912-php-and-jquery/ Share on other sites More sharing options...
gizmola Posted May 20, 2011 Share Posted May 20, 2011 You have absolutely no javascript code in there. What did you try? When would the news display? When the person hovers over the link... clicks on it? Link to comment https://forums.phpfreaks.com/topic/236912-php-and-jquery/#findComment-1218241 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.