spec me a software........

Soldato
Joined
29 Jul 2003
Posts
7,687
that i can upload multi pics at one go to my web server and automatically change them to image tag * list so i can copy/paste them to my forum.

if you know better way to do it, can be external or internal my forum as long i can upload multi pics at one go.

cheers :)
 
Last edited:
this question came up the other day. if you have php, you could place this script in the same folder as all your images via ftp. access the script in a web browser and it will generate the links....

Code:
<?php
$here = 'http://domain.com/folder/'; //change this to full url of your images folder
foreach(glob('*.jpg') as $image) {
	echo '[img]'.$here.$image.'[/img]';
        echo '<br>';
}
?>
 
i forgot about this thread!! :(

thanks marc2003 for the script, it's working.

what about thumbnail? are you good with AJAX, java script?

thanks :)
 
Back
Top Bottom