Posts by André • 128 points
4 posts
-
3
votes4
answers1023
viewsA: Send more than one parameter in GET request
The parameters should be separator by a "&" thus: link.php?param1=valor¶m2=valor In your example would look something like: cidades.php?estado=valor&cidade=valor…
-
1
votes1
answer567
viewsA: Running a java applet in the browser
Chrome no longer supports NPAPI (technology required for Java applets) Source: https://www.java.com/pt_BR/download/faq/chrome.xml…
-
5
votes1
answer842
viewsQ: Is it possible to do form authentication/validation with pure Node.js?
Today I became interested in Node.js for being able to program javascript in the back-end and front-end. From what I understand - correct me if I’m wrong - Node is a platform that allows me to…
-
2
votes2
answers104
viewsA: Could not acess file: Array e syntax error, Unexpected '$name' (T_VARIABLE)
I think this: $mail->setFrom = ('[email protected]'); That should be it: $mail->setFrom('[email protected]');