How to display the login form right on the home page with the url parameter but not to redirect that form to another page, it's just on the home page when clicked. I used mvc for my project. Thanks for Reading.
How to display login form in php
Collapse
X
-
-
From what I understand after reading the text, I think you're looking for a modal popup with maybe the asynchronous form submission.How to display the login form right on the home page with the url parameter but not to redirect that form to another page, it's just on the home page when clicked. -
I would say do something like the following:
Code:<?php $_POST['foo'] = $foo //etc. ?> <!DOCTYPE html> <head> </head> <body> <form name="some form" method="post" action="" > <input type="text" id="foo" name="foo" /> </form> </body> </html>
Comment
Comment