I need to run an if isset statement but i can’t seem to get it right, please assist.
<?php
if(isset($_SESSION['schlid'])) {
foreach($_SESSION['schild'] as $index=>$child){ ?>
<?php echo "<input type='text' name='schild[{$index}]' value='{$child}'/>";?>
<?php } }?>
schild is stored in the session but it is not displaying the input fields from the foreach loop
@Xavier: Change
to