php - Display contents of my website on another website to control data -
i needing show information on website on website. content of website simple form when submitted redirects user part of other website. best way approach via php? thinking iframe not sure if there method allow more control or presented better.
so kind of this:
<html> <head><title>my website</title></head> <body> <form action="mycontrollermethod"> <input type="name" name="somename"> <button type="submit">submit</button> </form> </body> </html> then on other website display same (the form) when click submit goes controller method handle information , redirect page want. guess hard coded on end
Comments
Post a Comment