Create a mechanism to pass in a positive integer and display all the values of the Fibonacci series up to and including the specified value
<form method="get" action="Index.php"> <fieldset> <label for="powerof">Fibonacci: </label> <input type="text" name="powerof" value="<?php echo $_GET['powerof']; ?>"/> <input type="submit" name='Go' value="Calculate" /> </fieldset> </form> <?php $message = 'The fibonacci sequence is: <br />1<br />2<br />'; $powerof = 0; $max = 5; $temp = $max; if (isset($_GET['powerof'])) { $powerof = $_GET['powerof']; } if ($powerof > 100) { $powerof = 100; $message = 'Sorry, your input was too high. I converted it to the maximum value of 100.<br />The fibonacci sequence is: <br />1<br />2<br />'; } $i = 1;