Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhambley committed Apr 23, 2018
2 parents d02a9ae + f96986e commit 8721b60
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 6 additions & 3 deletions src/view_elements.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?php
session_start();
$_SESSION['theme1'] = $_GET['theme1'];
$_SESSION['theme2'] = $_GET['theme2'];
$_SESSION['theme3'] = $_GET['theme3'];
if (!empty($_GET['theme1']))
{
$_SESSION['theme1'] = $_GET['theme1'];
$_SESSION['theme2'] = $_GET['theme2'];
$_SESSION['theme3'] = $_GET['theme3'];
}
include "header.php";
include "navbar.php";
include "db.php";
Expand Down
8 changes: 5 additions & 3 deletions src/view_students.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@
</button>
<p>
</p>
<button class="btn btn-default" type="submit" name=skip value="true" style="border-color: #192A6C">
Enter Element Choices Only
</button>
</fieldset>
</form>
<form action="view_elements.php">
<button class="btn btn-default" type="submit" name=skip value="true" style="border-color: #192A6C">
Enter Element Choices Only
</button>
</form>

</div>
<div class="col-sm-4">
Expand Down

0 comments on commit 8721b60

Please sign in to comment.