Skip to content

Commit

Permalink
Update process.php
Browse files Browse the repository at this point in the history
  • Loading branch information
milq authored Jun 26, 2017
1 parent 94a2a99 commit fd33269
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/php/form/process.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
$gender = $_POST['gender'];
?>

<p>Your name is <?php echo $name; ?>.</p>
<p>You are <?php echo $age; ?> years old.</p>';
<p>Your gender is <?php echo $gender; ?>.</p>
<p>Your name is <?php echo $name ?>.</p>
<p>You are <?php echo $age ?> years old.</p>
<p>Your gender is <?php echo $gender ?>.</p>

</body>
</html>

0 comments on commit fd33269

Please sign in to comment.