cturner Posted September 15, 2007 Share Posted September 15, 2007 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 https://forums.phpfreaks.com/topic/69414-saving-a-php-created-graphic-to-two-different-folders/ Share on other sites More sharing options...
micah1701 Posted September 15, 2007 Share Posted September 15, 2007 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 https://forums.phpfreaks.com/topic/69414-saving-a-php-created-graphic-to-two-different-folders/#findComment-348767 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.