In this activity you will learn one way to send data between pages.
<main> tags.<main> tag that says 'Choose your hero.'href will be 'process_form.php?name=Loki'. <main>
<p>Choose your hero.</p>
<ol>
<li><a href="process_form.php?name=Loki">Loki</a></li>
<li><a href="process_form.php?name=Hulk">Hulk</a></li>
</ol>
</main>
? following the filename, then the name of the hero chosen.<main> tag.<p>You have chosen <?php echo $_GET['name']; ?></p>