View Single Post
Join Date: Sep 2008
Posts: 25
Reputation: mohammed2raja is an unknown quantity at this point 
Solved Threads: 1
mohammed2raja mohammed2raja is offline Offline
Light Poster

progress bar during downloading file.

 
0
  #1
Sep 26th, 2008
I hv design a progress bar, the method start_progrss() starts the progress bas and the method end_progrss() stops the progress bar.

I develop two file 1. loginfile.php and
2. downloadfile.php
My loginfile.php contain two text fields user name and password.

/*********loginfile.php ************/


  1. function mysubmit(){
  2. //code
  3. start_progress(); // here i start progress bar
  4. window.location.href = "downloadfile.php?getLoginName=" + getLoginName+"&getLoginPass="+getLoginPass;
  5.  
  6.  
  7. //code
  8. }

Now my problem is how i stop progress bar by calling stop_progress() once the user name and password is verified. Please give any suggestion.
Last edited by peter_budo; Sep 28th, 2008 at 8:17 pm. Reason: Keep It Organized - please use [code] tags
Reply With Quote