Voting

: min(seven, five)?
(Example: nine)

The Note You're Voting On

nargy at yahoo dot com
18 years ago
When opening php://output in append mode you get an error, the way to do it:
$fp=fopen("php://output","w");
fwrite($fp,"Hello, world !<BR>\n");
fclose($fp);

<< Back to user notes page

To Top