Skip to content

Commit

Permalink
Added a few more
Browse files Browse the repository at this point in the history
  • Loading branch information
MFox committed Mar 28, 2017
1 parent 9b3ca5b commit 3ebc842
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions html-ONLY-site/details-content.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,18 @@

<li>
<h3>Address</h3>
<p id="address">STILLTODO</p>
<?php
//Should add ternary operator for nulls and blanks
echo'<p id="address">'.$row['WellAddress'].'</p>';
?>
</li>

<li>
<h3>Town</h3>
<p id="town">STILLTODO</p>
<?php
//Should add ternary operator for nulls and blanks
echo'<p id="town">'.$row['Well_Town'].'</p>';
?>
</li>

<li>
Expand Down

0 comments on commit 3ebc842

Please sign in to comment.