Update XSS_level1.php

This commit is contained in:
Ömer Faruk Şenyayla 2018-11-30 01:06:53 +03:00 committed by GitHub
parent 38a946c065
commit 7d3c0ed236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,12 +6,12 @@
</head>
<body>
<form method="GET" action="" name="form">
<p>Adınız:<input type="text" name="username"></p>
<p>Your name:<input type="text" name="username"></p>
<input type="submit" name="Gönder">
</form>
<?php
if(isset($_GET["username"]))
echo($_GET["username"])?>
echo("Your name is ".$_GET["username"])?>
</body>
</html>