August 28, 200817 yr Hi all, I am trying to display the first record from an array list, but for some reason it is not working, any help will be appreciated. <?php foreach($AddFindRecord['data'] as $recordkey =>$recordDataFIND){ ?> <?php echo $recordDataFIND['Checkbox1'][0]; ?> <?php } ?> it is showing me all the record I checked in a checkbox but I only need the first record checked. thank you in advance
August 28, 200817 yr Author Ok I finally got it working. <?php echo($viewRecord['valueLists']['Checkbox1'][0]);?> Edited August 28, 200817 yr by Guest
Create an account or sign in to comment