I've tried several forms here on the site and on the net, but no other functions. I have a form that when sending it loads the class and function:
class editar {
public function selecao_editar() {
//Aqui tem outro form que ao enviar deve carregar a outra função para atualizar o banco.
}
function update(){
if (isset($_POST['botaoupdate'])) {
....}
}
}
I have tried the following ways:
1°
class editar {
public function selecao_editar(){
$temp = editar ::update();
...
}
function update(){
...
}
}
2°
class editar {
public function selecao_editar(){
$this-> update();
...
}
function update(){
...
}
}