PDA

View Full Version : Renaming


Cologne
05-11-2009, 07:19 AM
Hi there,

how can I rename all my uploads with the same RANDOM-PASSWORD Extension.

With one it works well.

File: <?php echo WA_RandomPassword(10, true, true, true, ""); ?> for example.

Infront I only want o_ for the original, t_ for thumb and s_ for small.

but if I use the <?php echo WA_RandomPassword(10, true, true, true, ""); ?> again, then always new names are created.

please, help, but without SESSION :-)

by the way, if i choose to save as JPG 100% it changes always to 80% if I reEdit.

Denis

Ray Borduin
05-11-2009, 08:52 AM
On the top of your page set a variable to store the password like:

$RandomString = WA_RandomPassword(10, true, true, true, "");

Then in your uploads use: <?php echo $RandomString; ?>

Cologne
05-11-2009, 10:35 AM
:-) sometimes ist so easy.

thanks!