Jump to content

Saving a php created graphic to two different folders


cturner

Recommended Posts

Can someone please tell me how I can save a php created graphic to two different folders? I want to save the graphic to the images folder that is in the folder that has the php code. The other folder will be in a different location that php code folder. Thanks in advance.

 

Here is my code:

$name = stripslashes($_POST['title']);
$title = stripslashes($_POST['title']);
$title2 = str_replace("'", '', $title);
$title3 = str_replace(' ', '', strtolower($title2));
function makeimage ($title3, $name) {
    	$im = @imagecreate(110, 23) or die('Cannot Initialize new GD image stream.');
    	imagecolorallocate($im, 0, 57, 122);
    	$tc = imagecolorallocate($im, 255, 255, 255);
    	imagestring($im, 3, 10, 5,  $name, $tc);
    	imagejpeg ($im, 'images/'.$title3.'btn.jpeg');
    	imagedestroy($im);
}
        makeimage ($title3, $name);

just call your pretty function twice:

 

makeimage ($title3, "/path/to/folder/$name); //save in some other folder

makeimage ($title3, $name); //save in current folder

 

or, do what you have now and then make a copy of the file:

 

makeimage ($title3, $name);

copy($name, "/path/to/folder/$name");

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.