Hello,
I have read all the images which are availaible in a file into an array.
for example :
Now I have an another array which contain the list of template or files,from which I have read the Images.
Now,I have to join this two array's in such way,The key sould be Image and template should be a value.and the key should reference the html file from where I read the Images.
for example.If I have read the image form test.html.my array shoul look like this
Any help would be appreciated.
Thanks In Advance
Mohamad
I have read all the images which are availaible in a file into an array.
for example :
Code:
Array
(
[0] => /image/default/counter/test.png
[1] => /image/default/counter/test2.jpg
[2] => /image/default/list.png
[3] =>
)
Code:
Array ( [0] => /home/domainusers/image.html [1] => /home/domainusers/html/default/counter/blah.html [2] => /home/domainusers//html/default/counter/tesz.html )
for example.If I have read the image form test.html.my array shoul look like this
Code:
Array
(
[0] => /image/default/counter/test.png
=>array ([0]=> /home/pic/test.html
)
)
Thanks In Advance
Mohamad
Comment