I want to make a form. The person enters a website URL Then the code should add after the equals sign of so it will replace the somewebsite.com and while doing that redirect the person at my website to that link
After the guy enters the website he wants to go to, he will be taken there but that code will be attached
So you want the website the guest types in to open in a frame and your website banner still along the top of the page because the guest is still technically on your page? Sorry I just want to be clear so I get the code right for you the first time
Your form would be something like: <form action="" method="get"> <label for="url">URL:</label> <input type="text" name="url" id="url" /> </form> Code (markup): Then on submit the URL would be: currenturl.com/?url=userenteredvalue When using "GET" as the form method it appends all form data to the end of the action url on submit as you can see. Here's a basic article on handling form data: http://www.tizag.com/phpT/postget.php