Ok so what I though should be pretty easy has got me going crazy. I cannot figure out a conditional statement to get this to work the way I need it to.
This is my first page index.html which is a form and will post the the next page below
[code]
This is the page being posted to, created.php. All I am trying to do is have the created.php only show the fields that have had entry, and if none have had entry to not show any part of the Divs or anything.
<div>
<h3>Includes</h3>
<div>
<div>
<ul>
<li> <?php echo("$Includes_1")?></li>
<li> <?php echo("$Includes_2")?></li>
<li> <?php echo("$Includes_3")?></li>
<li> <?php echo("$Includes_4")?></li>
<li> <?php echo("$Includes_5")?></li>
</ul>
</div>
I would appreciate any help on this, thank you !