Advertisement
Advertisement
| 10.07.2008 at 05:09AM PDT, ID: 23793389 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: |
<?php
//here is where the pdftk application merges all of the pdf files in the directory /home/swipeweb/public_html/crm/cbacks/group/. The merged
//pdf is saved in the same directory as yes.pdf
passthru('/home/swipeweb/public_html/crm/cbacks/pdftk /home/swipeweb/public_html/crm/cbacks/group/*.pdf cat output /home/swipeweb/public_html/crm/cbacks/group/yes.pdf');
//the following code renames the yes.pdf file, copies it to a new directory, and deletes ALL pdf files in the /group directory
$time = date(DATE_RFC822);
$base5 = $mid . "_" . $time . ".pdf";
$newLocation2 = '/home/swipeweb/public_html/crm/cbacks/download/' . $base5;
$copy = '/home/swipeweb/public_html/crm/cbacks/group/yes.pdf' ;
copy($copy, $newLocation2);
$del = glob("/home/swipeweb/public_html/crm/cbacks/group/*.pdf");
foreach($del as $v) {
unlink($v);
}
?>
|