MySQL Forums
Forum List  »  PHP

Re: I'm having extreme difficulty getting my ADD and DELETE buttons to work with PHP and MySQL tables.
Posted by: Barry Galbraith
Date: April 25, 2013 06:55PM

> <form type="formoutput.php" method="post">

This does nothing. type is not an attribute of a form element. Unless you spcify and action attribute, you will get action by the same file that submits the form. It hink you mean

<form action="formoutput.php" method="post">

Good luck,
Barry.

Options: ReplyQuote


Subject
Written By
Posted
Re: I'm having extreme difficulty getting my ADD and DELETE buttons to work with PHP and MySQL tables.
April 25, 2013 06:55PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.