Hello...I've got an iframe that uses this code
<iframe src="http://www.<?=$_REQUEST["url"]?>"></iframe>
So if you go to www.mysite.com/file.php?url=website.com
The iframe shows [
website.com...]
But if you just go to www.mysite.com/file.php - The iframe src is just "http://www" - I want to be able to make it that if you haven't specified the url then it by default goes to a another site.
How would I do this?
Thanks