Welcome Guest, Not a member yet? Register   Sign In
List of Images
#9

(This post was last modified: 04-18-2016, 07:19 AM by Wouter60.)

PHP Code:
<?php
    
<?php 

Php can't handle this. Before using a <?php opening tag, the previous one should be closed with ?>
So delete the first <?php opening tag!

And a tip to make your code better to read:
PHP Code:
<?php if ($images) : ?>
  <?php foreach ($images as $image) : ?>
     //do whatever you need with each image
  <?php endforeach; ?>
<?php 
else : ?>
  // determine what to do if there are no images
<?php endif; ?>
Reply


Messages In This Thread
List of Images - by davy_yg - 04-09-2016, 03:38 AM
RE: List of Images - by pb.sajjad - 04-09-2016, 04:03 AM
RE: List of Images - by Wouter60 - 04-09-2016, 05:32 AM
RE: List of Images - by davy_yg - 04-17-2016, 07:00 PM
RE: List of Images - by PaulD - 04-18-2016, 01:57 AM
RE: List of Images - by JayAdra - 04-18-2016, 03:01 AM
RE: List of Images - by PaulD - 04-18-2016, 10:16 AM
RE: List of Images - by davy_yg - 04-18-2016, 03:28 AM
RE: List of Images - by InsiteFX - 04-18-2016, 04:19 AM
RE: List of Images - by Wouter60 - 04-18-2016, 07:15 AM
RE: List of Images - by davy_yg - 04-18-2016, 11:14 PM
RE: List of Images - by Wouter60 - 04-19-2016, 10:02 AM
RE: List of Images - by davy_yg - 04-29-2016, 12:33 AM
RE: List of Images - by Wouter60 - 04-29-2016, 01:05 AM



Theme © iAndrew 2016 - Forum software by © MyBB