Results 1 to 3 of 3

Thread: Countdown script not working...

  1. #1
    Join Date
    Aug 2006
    Posts
    65
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Countdown script not working...

    I got this code from http://www.java-scripts.net/javascri...wn-Timer.phtml ... it looks like it works on there site but when I put it into mine it doesnt work.. nothing shows up in the disabled box?

    I just want it to count down from 30 sec..

    this is in a php file.. sorry if it looks messy
    Code:
    print "<br><br><br>You will be redirected in:";
    			print "<form name=\"counter\"><input type=\"text\" size=\"8\" disabled name=\"d2\"></form>"; 
    			print "<script>";
    			print "<!--";  
    			print "//";
    			print " var milisec=0";
    			print " var seconds=30"; 
    			print " document.counter.d2.value='30'"; 
    			print " function display(){"; 
    			print " if (milisec<=0){"; 
    			print "	milisec=9"; 
    			print "	seconds-=1"; 
    			print " }"; 
    			print " if (seconds<=-1){"; 
    			print "	milisec=0"; 
    			print "	seconds+=1"; 
    			print " }"; 
    			print " else"; 
    			print "	milisec-=1"; 
    			print "	document.counter.d2.value=seconds+\".\"+milisec"; 
    			print "	setTimeout(\"display()\",100)"; 
    			print "} ";
    			print "display()"; 
    			print "-->"; 
    			print "</script>";
    Last edited by Humper; 09-12-2006 at 06:00 PM.

  2. #2
    Join Date
    Aug 2005
    Posts
    971
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I think that you should use echo instead of print, not sure though.

  3. #3
    Join Date
    Aug 2006
    Posts
    65
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default

    print and echo are basically the same when it come to printing the html in php... I guess I can try this.. but dont think it will help.. it prints the box out fine but just doesnt put the value in the textbox..

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •