I have a PHP generated page containing the results of a submitted form, what I would like to do is save this as a .doc file on the server. After some googling I came across this code which I adapted:-

$myFile = "./dump/".$companyName."/testFile.doc";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);

But the problem with this is that I would have to recreate the results in order to manually write them to the file and it doesn't seem very efficient.

So I continued to google and found the PHP manual which left me scratching my head frankly, however I eventually found this:-

ob_start();
// code to generate page.
$out = ob_get_contents();
ob_end_clean();
// or write it to a file.
file_put_contents("./dump/".$companyName."/testFile.doc",$out);

Which will create the file, but doesn't write anything to it. However this seems to be the way to do what (Based on the PHP manual) I want even if I can't get it to work!

Any advice? I don't mind googling if I can figure out a decent search term :)

link|improve this question

79% accept rate
Your code works fine in my env. Are you echo'ing or printing the values between ob_start and ob_get_contents? – cwallenpoole Jul 27 '11 at 14:57
what exactly do you mean by "recreate the results"; and why is this, as you say, inefficient? – Bosworth99 Jul 27 '11 at 14:57
Cwallenpoole - Not echoing anything, what's there is what I'm trying to use. Thanks Awea I will read through that thread. Bosworth99 - By inefficient I mean that I will have to write out each of the $_post results individually again - I have already created a table to display each of them. It's doable using this method but seems clunky. – Andrew Jul 27 '11 at 15:02
feedback

1 Answer

up vote 1 down vote accepted

This sould do it for you:

$cache = 'path/to/your/file';

ob_start();

// your content goes here...
echo "hello !"; // would put hello into your file

$page = ob_get_contents(); 

ob_end_clean(); 

$fd = fopen("$cache", "w"); 

    if ($fd) {

    fwrite($fd,$page); 

    fclose($fd);

}

It's also a great way to cache dynamic pages. Hope it helps.

link|improve this answer
thanks, but aside from creating the file, this doesn't seem to write anything to it? – Andrew Jul 27 '11 at 15:07
where it says //your content goes here you can write anything you want. echo/print entire pages. – Stack 101 Jul 27 '11 at 15:11
Sorry : this fwrite($fd,$pages); needs to be fwrite($fd,$page); – Stack 101 Jul 27 '11 at 15:13
Ah ha...That explains why it didn't write hello! So using this method I would need to copy the content of the BODY where it says your content goes here? Thanks again – Andrew Jul 27 '11 at 15:17
Copy/ Include the script around the part you want copied. I'm glad I could help. – Stack 101 Jul 27 '11 at 15:19
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.