Posts by Willian • 51 points
3 posts
-
0
votes2
answers155
viewsA: Create PHP form using recovered result of an SQL query
Then for each line (tr) you will have to put a form. for example: echo "<tr>"; echo '<form action="#" method="post">'; echo "<td…
-
1
votes1
answer272
viewsA: Do php’s autoload functions make an object available to any part of the site in the same session, even in different subdirectories?
I recommend that you use autoload in Composer, which besides lightweight it works well with namespaces. But answering your question, when you concatenate the file path, put in front of the function…
-
1
votes1
answer1698
viewsA: Convert class object to String
In the frm_noticia.php you’re giving echo on result bank. Should pass mysql_fetch_assoc to take the die result. To better understand a var_dump($view->obterIdLink())…