Forum Moderators: coopster
http://www.example.com/index.php?Log=1&login=domain.com&pwd=password
I will be installing this link into customer's cpanel so they can log in to this service strait from there.
[edited by: dreamcatcher at 5:59 pm (utc) on June 23, 2007]
[edit reason] Used example.com and unlinked. [/edit]
<form method="post" action="page.php">
domain:<input type="text" name="domain" value="<?php echo $_GET['login'];?>" />
password:<input type="text" name="password" value="<?php echo $_GET['pwd'];?>" />
</form> This echos the GET superglobal [us.php.net] accordingly.
<input name="password" [b]type="password"[/b] value="<?php echo $_GET['pwd'];?>" />
;)