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
https://forums.phpfreaks.com/topic/180162-adding-php-to-javascript/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.