how do i make the hyperlink post the link to video.php's $url?
hyperlink:
<a href="video.php">Press to view</a>
Video display page:
<?php
$url = 'url from hyperlink';
if(isset($url)){
echo "funkar";
}
?>
<title>Tesst</title>
<body>
<div align="center">
<iframe width="853" height="480" src="<?php echo $url ?>" frameborder="0" allowfullscreen></iframe>
</div>
</body>