Hi, how can I convert my PHP data (extraxt from sql) to word document?

This is the simplest way to create doc file.
This code is for example using users table.

<? 
	$fp = fopen("export.doc", 'w+');
	
	$sql = "select * from users"; 
	$res = mysql_query($sql);
	while($sar = mysql_fetch_assoc($res))
	{
		$str = "<br />Username : ".$sar['username']." Password : ".$sar['password']; 
		fwrite($fp, $str); 
	}	
	fclose($fp); 
?>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.