Re: help catch the error



Thanks, works too :)

"Janwillem Borleffs" <jw@xxxxxxxxxxxxx> wrote in message
news:42c12e84$0$8337$dbd4f001@xxxxxxxxxxxxxxx
> Ashok wrote:
> > <?php ds("images/$products['products_image']",100,"big magic") //this is
> > line 75
> > ?>
> >
>
> This should be:
>
> <?php ds("images/{$products['products_image']}",100,'big magic') ?>
>
> Or:
>
> <?php ds('images/' . $products['products_image'],100,'big magic') ?>
>
>
> JW
>


.