# PHP argument problem

**URL:** https://forum.kirupa.com/t/php-argument-problem/298339
**Category:** programming
**Created:** [October 16, 2009, 6:04pm UTC](https://forum.kirupa.com/t/php-argument-problem/298339 "2009-10-16T18:04:33Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![speedy\_rudolf](https://avatars.discourse-cdn.com/v4/letter/s/5daacb/32.png) [@speedy\_rudolf](https://forum.kirupa.com/u/speedy_rudolf)
#### Post date: [October 16, 2009, 6:04pm UTC](https://forum.kirupa.com/t/php-argument-problem/298339/1 "2009-10-16T18:04:33Z")

</div>

Hi. I’m trying to get php to fetch some files, but I can’t figure out how to do it…here is the code…

```auto
<?php
require("class.easyzip.php");
$zip = new EasyZip;
$zip -> addFile("$_POST['Fis_lay']");
$zip -> addFile("$_POST['Fis_txt']");
$zip -> splitFile("site.zip", 5000000);
echo 'Attachment has been sent Successfully.';
?>

```

I have tried with no quotation marks, no apostrophe, quotation marks instead of apostrophe, but it always sais “Error: file does not exist” of another (very long) error on line 5. Any help is very much appreciated. Bye.
