-
Thank you for your answer, but...
I don't understand. Is it possible to declare two OLE class simultaneously without "Fatal error: Cannot redeclare class ole..."? I have renamed OLE class from ExcelReader to OLE2 and it seems to be ok.
Do you see any other (better) possibilities?.
2004-07-24 13:06:35 UTC in PHP-ExcelReader
-
Is there a possibility to use this ExcelReader and Excel_Writer from PEAR in one script? Both depends from OLE class but included OLE class is different from PEAR OLE class. I have found that in file Reader.php some PEAR specified lines are commented, but don't know which should be changed.
Alexander.
2004-07-23 15:00:36 UTC in PHP-ExcelReader
-
I found in your code:
$phxVars = $_REQUEST;
if(file_exists("phx_config.php")) include("phx_config.php");
phx_reset();
but in phx_request() I found:
$_REQUEST[$qw[$i]] = isset($qw[$i + 1]) ? $qw[$i + 1] : "";
It means that after calling phx_reset() $_REQUEST contains more variables than $phxVars. It is bad idea. After that you wrote in documentation...
2004-01-14 17:16:10 UTC in PHX Web Platform
-
As I understand "Module"-like function called phx_mod is part of new version 1.2?
I propose two subjects.
1. I suggest such modification:
function phx_mod($command, $modVars) {
global $phx, $phxVars;
instead of :
function phx_mod($command, $phxVars) {
global $phx;
The reason is: I'd like to access both variables:
global $phxVars array, and module parameters...
2004-01-13 01:51:57 UTC in PHX Web Platform