Posts by mehid • 11 points
2 posts
-
0
votes1
answer32
viewsQ: Array inside the foreach returns last column of the database
The problem is that this way, return only the last column of the database public function Acentos ( $string ) { $Acentos = $this->SelectDados( "*", "table", "", array () ); foreach ( $Acentos as…
-
-1
votes1
answer97
viewsQ: Inheritance of Interface that is in another folder
How can I implode that Interface in my classes? class/layout/Header.php class Header implements Interface { private function setHeader() { } public function getHeader() { } }…