Hi, I'm trying to pass URL to a website so it can be opened in an iframe, the URL is for a registration confirmation so users get their id / password, I know how to do that and the URL opens fine, but what are the implications for the website it is being passed to (it is an online store).
Here is the script on the store site:
<?
echo ($lnk); echo"<br>";
echo"<iframe src =\"" . $lnk . "\" width=\"1000\" height=\"900\"></iframe>";
?>
Obviously this needs to be secured, but I'm only beginning to learn security and I can't have this go online without being certain it is safe, any help is appreciated.