Given the following PHP...
<?php
$name = $_GET['name'];
echo "Welcome $name<br>";
echo "Have Fun!";
?>
What kind of XSS vulnerability is this subject to: Stored, or Reflected?
My answer is: Non Persistent (reflected), but I am confused on how the index.php will be used as reflection when the user inputs the information.