Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?
$xmlfile = "";//file name
$fh = fopen ($xmlfile ,"wb") or die ("cant create file");
$sql = "Select id, first_name, last_name, user_id from usertable";
$result = @mysql_query($sql) or die (mysql_error());
while ($row[] = mysql_fetch_assoc($result)):
//do nothing
endwhile;
$lineterminate = chr(13) .chr(10);
fwrite ($fh, "<?xml version="1.0"?>$lineterminate<users>");
foreach ($row as $val):
extract($val);
$line = "
<user> $lineterminate
<id> $lineterminate
$id $lineterminate
</id> $lineterminate
<first_name> $lineterminate
$first_name $lineterminate
</first_name> $lineterminate
<last_name> $lineterminate
$last_name $lineterminate
</last_name> $lineterminate
</user> $lineterminate
";
fwrite($fh, $line);
endforeach;
fwrite ($fh, "</users>");
?>