Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Create xml file with php
SUBMITTED BY:
Guest
DATE:
April 30, 2013, 9:09 a.m.
FORMAT:
PHP
SIZE:
375 Bytes
Raw
Download
Tweet
HITS:
1026
Go to comments
Report
$fp = fopen("xlsfile://tmp/test.xls", "wb");
if (!is_resource($fp)) {
die("Cannot open excel file");
}
$data= array(
array("Name" => "Bob Loblaw", "Age" => 50),
array("Name" => "Popo Jijo", "Age" => 75),
array("Name" => "Tiny Tim", "Age" => 90)
);
fwrite($fp, serialize($data));
fclose($fp);
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus