Hello! I have a question. How to code a script which export a data from previously uploaded excel file in the server, when a visitor enter a digit or just his/her membership number, included in the excel file? Thank You in advance!
you can work directly with an excel xls workbook using this library: http://code.google.com/p/php-excel/ however php has built in functions for working with csv files which can also be opened by Excel. csv files would be easier to work with than the native Excel xls file type. Here are some links for working with csv files: http://www.homeandlearn.co.uk/php/php10p6.html http://php.net/manual/en/function.fgetcsv.php http://www.php.net/manual/en/function.fputcsv.php
Thank you for the information. Ir helped me! I will just convert the files I'm using now as it is more convenient to work with CSV.