Random # variable into url

A

Anonymous

Guest
you write the HTML of the iframe in PHP
Code:
<?php 
 $randomno = ......

 echo "<iframe src="htp://someurl/$randomno"></iframe>";
?>
 
Back
Top