well, i am using all kinds of arrays in my
page. now that you guys mention it, after removing the arrays, the error DID DISSAPEAR.
The error was a result of using arrays like the following
$application = array();
$application["name"] = "CBZ 123";
$application["db"] = "mysql 3.23.23-beta";
$application["dbhost"] = "locahost";
$application["dbuser"] = "nilesh";
... and so on, AFTER changing all these to
$application_name = "CBZ 123";
$application_db = "mysql 3.23.23-beta";
... and so on the errors went away.
About MsSQL : not using currently. Changed my approach as follows
1> created an XML-type txt document
2> just parse through the txt document,
however I had to write my own parser.
But hey, things started to work and thanks to all you guys.
cheers
nilesh :-)