Posts Tagged ‘hint

If you get this error: Fatal error: session_start(): Failed to initialize storage module: The solution is changing your current php.ini settings for session.save_handler user to session.save_handler files. Edit your php.ini file from: [Session] ; Handler used to store/retrieve data. session.save_handler = user to [Session] ; Handler used to store/retrieve data. session.save_handler = files If you [...]

04 Jan, 2009

Excel and PHP

Posted by: admin In: howto|php

From Office 97 version, the World famous spreadsheet can read html table’s like a spreadsheet rows and colums. With this interesting feature we can create .xls file on the fly from php with a simple play of <table> html tag. Here the code 1 2 3 4 5 6 7 8 9 10 11 12 [...]