Skip to content

Commit

Permalink
FOMRMS AND THINGS
Browse files Browse the repository at this point in the history
  • Loading branch information
etl12003 committed Apr 23, 2017
1 parent 309d69e commit c1d43a9
Show file tree
Hide file tree
Showing 7 changed files with 594 additions and 82 deletions.
11 changes: 1 addition & 10 deletions Wello/www/details-content.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,6 @@
?>
</li>

<li>
<h3>Zip code</h3>
<p id="zip-code" class="med-num">STILLTODO</p>
</li>

<li>
<h3>Lot number</h3>
<p id="lot-number" class="med-num">
Expand Down Expand Up @@ -206,10 +201,7 @@
<p>
<?php
//Should add ternary operator for nulls and blanks
<<<<<<< HEAD

=======
>>>>>>> origin/master

echo $row['Drive_Shoe'];
?>
</p>
Expand All @@ -235,7 +227,6 @@
<p id="method">
<?php
//Should add ternary operator for nulls and blanks

echo $row['Yield_Test_Type'];
?>
</p>
Expand Down
4 changes: 2 additions & 2 deletions Wello/www/details.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php require 'cred.php';
$mysqli = new mysqli("localhost", $username, $password, $database);
if ( (isset($_GET['Well_ID'])) && (is_numeric($_GET['Well_ID'])) ) {
if ( (isset($_GET['Well_ID']))) {
$Well_ID = $_GET['Well_ID'];
}
else if ( (isset($_POST['Well_ID'])) && (is_numeric($_POST['Well_ID'])) ) {
else if ( (isset($_POST['Well_ID']))) {
$Well_ID = $_POST['Well_ID'];
}
else {
Expand Down
Loading

0 comments on commit c1d43a9

Please sign in to comment.