Posts by Sérgio Neto • 1 point
3 posts
-
0
votes1
answer28
viewsA: How to access a vector within a PHP obejto and insert the data into the Mysql database
I was able to solve the problem, I was making the vector construction in the wrong way. It’s working this way: $tam = 0; foreach ($_POST['nome'] as $nomepost) { $nome = $nomepost; $logradouro =…
-
0
votes1
answer28
viewsQ: How to access a vector within a PHP obejto and insert the data into the Mysql database
I would like to know how to access the array of addresses within this object: And insert the attributes inside a table in Mysql, I am doing it as follows foreach ($this->endereco as $elemento) {…
-
0
votes0
answers286
viewsQ: Passing data via post HTML JAVASCRIPT
Hello, I am doing a college job, an academic control, and when trying to remove a tuple from the database by passing the "id" of the tuple via post form, the value arrives either empty or Undefined.…