Hello, I was following the tutorial below to learn how to make simple galleries with descriptions underneath in PHP when I got everything working fine, but it's only detecting the first letter of my description under each jpg. The array only seems to find the first letter and stop. My code is identical, I must have missed something. http://www.devtek.org/tutorials/image_gallery.php And the sample site I'm using it with. http://www.digifind-it.com/test/script.php
Have you sorted this problem out? If not then please post the code you're using and I'll be happy to have a quick look for you.
I did actually. On the line <br />' . $description[$file][0] . '</td>'; I just deleted the [0] making <br />' . $description[$file]. '</td>'; and it worked fine.