I made php page witd one form which collects infos from users.
I need to save this informations into a Excel file (ON SERVER).
I know how to generate Excel file, but I don't know how to save it on the server!
- Code: Select all
<?php
header('Content-type: application/vnd.ms-excel');
echo "<table><tr><td>hello</td><td>world</td></tr></table>";
?>
PLEASE HELP !
THANKS!

