Posts by user139999 • 66 points
2 posts
-
1
votes1
answer33
viewsA: Treats error to connect to PHP database[rectifying as the answer]
connecta is a method of its class, you need to call it with $this->connecta, just like you already do in the builder. public function executeSQL($sqlexe=NULL){ if($sqlexe!=NULL): $query =…
phpanswered user139999 66 -
4
votes3
answers530
viewsA: Find an object in the array that has a specific key
Find method. minhaVariavel = this.specifications.find(s => s.key === 'Valor').value Documentation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find…