Jump to content

should work twice a second but only works once


hasjem

Recommended Posts

I have a sceript which should work twice a second, but it stops after one pick up of information from the mysqldatabase. it should take a look in the database to see whether a name has changed without refreshing the page. what is wrong?

<?

$select="select *from aanbiedingen where volgnummer=$volgnummer";

$res=mysql_query($select);

$row=mysql_fetch_array($res);

echo$row[naam];echo('ppp');

?>

<span id="bieder"></span>

 

<script language="JavaScript" type="text/javascript">

<!--

 

var d = 500; // Tijd in milliseconden

var bieder = document.getElementById('bieder');

var hoogstebieder = "<?echo$row[naam];?>";

function lus() // De functie die in een lus zal worden uitgevoerd

{

<?$selekt1="select *from aanbiedingen where volgnummer=$row[volgnummer]";

$selektres1=mysql_query($selekt1);

$row1 =mysql_fetch_array($selektres1);?>

hoogstebieder="<?echo$row[hoogstebieder];?>";

 

bieder.innerHTML = hoogstebieder; // Waarde weergeven in de WaardeSpan

setTimeout("lus()", d); // De functie binnen Tijd milliseconden nog eens uitvoeren

}

 

lus(); // De lus starten

//-->

</script>

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.