I have searched without success for a method of producing hard copy from a MySQL database table. Please can you enlighten me. It needs to be PHP and a simple device for an administrator who is not conversant with PHP or phpMyAdmin
Print hard copy from a MYSQL database table using PHP
By "hard copy" I assume you mean a printout of the table? You could just write a PHP script which grabs all the rows from that table, loop through and output as a table in HTML and let the user print that page. For bonus points, add a print stylesheet in your CSS to format it nicely for print.
Many thanks, I overlooked the fact that PHP is a server-side language, silly of me. Regards