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);

Link to comment
Share on other sites

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");

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.