|
Posted by Janwillem Borleffs on 06/28/05 14:03
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
Navigation:
[Reply to this message]
|