fork(1) download
  1. <html>
  2. <body>
  3. <?php
  4. echo $_POST['id'].','.$_POST['password'];
  5. ?>
  6. <form method="get" action=""> # action에 현재 페이지 url
  7. id : <input type="text" name="id" />
  8. password : <input type="text" name="password" />
  9. <input type="submit" />
  10. </form>
  11. </body>
  12. </html>
Success #stdin #stdout #stderr 0.01s 20568KB
stdin
<html>
<body>
<?php
echo $_POST['id'].','.$_POST['password'];
?>
    <form method="get" action=""> # action에 현재 페이지 url
        id :  <input type="text" name="id" />
        password :  <input type="text" name="password" />
        <input type="submit" />
    </form>
</body>
</html>
stdout
<html>
<body>
,    <form method="get" action=""> # action에 현재 페이지 url
        id :  <input type="text" name="id" />
        password :  <input type="text" name="password" />
        <input type="submit" />
    </form>
</body>
</html>
stderr
PHP Notice:  Undefined index: id in /home/H6nbpT/prog.php on line 4
PHP Notice:  Undefined index: password in /home/H6nbpT/prog.php on line 4