HI,
i want my client to be able to click on a bot. or a link ...
and then he get a pop-up to save a file of CSV or XLS which contains the full data (all rows available) in the table 'A' of Database 'DB' this table contains the fields: ID, NAME, TEL
am using the way of showing the rows :
$dbconnect=mysql_connect("localhost","user","pass");
$dbselect=mysql_select_db("DB");
$statement="SELECT *FROM A";
$result=mysql_query($statement);
while ($row=mysql_fetch_array($result)){
echo ($row[id].", ".$row[name].", ".$row[tel]."<br>");
}
please advice ....
and thanks alot in advance ...