Jump to content

PHP and jQuery


Far Cry

Recommended Posts

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
Share on other sites

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.