Jump to content

Adding PHP to javascript


wmguk

Recommended Posts

hi,

 

how can I get my script to read my database?

 

This script works, but only shows the first result, and doesnt show anything after that...

 

<?php
include ("Scripts/connection.php");
$qry1 = "SELECT * FROM news";
$result1 = mysql_query($qry1);
?>
<script type="text/javascript">
/*Example message arrays for the two demo scrollers*/
var pausecontent=new Array()
<?php
while($news = mysql_fetch_array($result1)) 
{ 
$i = 0;
?>
pausecontent[<? echo $i; ?>]='<a href="news.php#<?php echo $news['id']; ?>"><?php echo $news['news']; ?></a><br /><?php echo $news['news']; ?>!'
<?php 
$i ++;
}
?>
</script>

Link to comment
Share on other sites

Each time you loop through the database you're continuously setting variable i back to 0, and then adding one back to it.

 

Define variable i before the while loop begins, and remove the definition of it from the contents of the while loop.

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.