hello, can someone please edit this code for me, <?php $name=$_GET['page'].".".$_GET['extension'];$name; $name=base64_encode($name); echo "<br><a href='http://site.com/index2.php?page=$name'>Click here to continue</a>"; ?> PHP: Click here to continue is in text format i want it in button format i mean this button: <input name="button22" type="button" onClick="starttimer();" value="Click here to continue"> can someone please integrate this button in my code? i want it in button form thnx
$name=$_GET['page']; echo "<input name=\"button22\" type=\"button\" onClick=\"goct('".$name."')\" value=\"Click here to continue\">"; ?> <script type='text/javascript'> window.name="main"; function goct(name) { popup= window.open("http://site.com/popup.php?page="+name, "Window2", "width=400,height=500,scrollbars=yes"); } </script> ?> PHP:
thnx but you have edited the wrong code, can you please take a look again, i had edited the code, you fixed the first code, please help again?