Hey Guys,
How can i use javascript popup window for this...
Index4.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<table>
<body>
<?php
$variable1='dreaddlord';
$variable2=$variable1;
echo "<a target='_blank' href='./page2.php?variable2=".$variable1."'><font face=Arial size=2>$variable1</a>";
?>
</body>
</table>
</html>
Page2.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Page 2</title>
</head>
<body>
<?php
$variable3 = $_GET['variable2'];
echo "Your USERNAME is: ".$variable3;
?>
</body>
</html>