What I think is happening is that you have one form, but more than one 
submit button. HTML forms can only have one submit button. So the first 
one that it 'sees' is the 'save' submit button, this is why you have 
this result each time.

If you're doing as I am i.e: deleting and updating results, use <input 
type="button"> and not <input type="submit"> and use a bit of 
Javascript: <input type="button" onClick="DoSomethingWithForm";>

Good luck!

Russ

#-------------------------------------------------------#
                                
         "Believe nothing - consider everything"        
                                                        
  Russ Michell
  Anglia Polytechnic University Webteam
  www.apu.ac.uk/webteam
  [EMAIL PROTECTED]
  +44 (0)1223 363271 ext 2331
  
  www.theruss.com
                        
#-------------------------------------------------------#


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to