I have a list of 10 small images that facilitate the background assembly for a captcha PHP script. It would be good to put all the background images in a folder out of view.
It did not work. Am I on the right track??:confused:
Regards
07-30-2011, 11:18 AM
WonDer9
you have to use ".." for an above directory. and "/" for below( or inside folder).
So if your trying to grab images form a folder within you directory it has to be :
++ so if your html or php file is inside a folder trying to get to a folder out side used the second.
++ if your html orr php file is in the main trying to retrieve from a folder use the first.
++ PHP dosen't always care about white spaces but try not to leave it between arears of type.
07-31-2011, 04:24 PM
webiter
Thanks WonDer9, that worked a treat. Thanks also for detailing the options.