there is a class with methods from here :
class Database { public function select($table, $rows = '*', $join = null, $where = null, $order = null, $limit = null){} public function insert($table,$params=array()){} public function delete($table,$where = null){} public function update($table,$params=array(),$where){} } How to implement the call of these methods with the parameters entered by the user on the page (using text boxes and buttons)?
<form method="post" action="myScript.php"> Параметр 1<input type="text" name="join"> Параметр 2<input type="text" name="where"> <input type="submit"> </form>When you click on the send button, this form is sent for processing to the script we specified in action. - DaVASrK