04 Jan, 2009
Posted by: admin In: howto|php
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
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 [...]
Pre-requisites: Database host or IP Database name Username and password access of db. First we need to declare some critical data like username and password, so i strongly recommended to store this value into a different file where php will ask tables and data, this for security reason. In the php convension, usually we make [...]