Posts by Lucas Procopio • 71 points
2 posts
-
2
votes1
answer314
viewsA: PHP MVC - How to run Model methods?
To pass the data as parameter in the desired method, simply set an action in your form to the file, where it contains the Controller that has access to Your Model. <form method="POST"…
-
2
votes1
answer303
viewsA: How to get images in XML CDATA and DESCRIPTION
PHP Offers a very comprehensive class for manipulating Domdocument XML [ http://php.net/manual/en/class.domdocument.php ] You can manipulate the document as follows: $dom = new DOMDocument();…