The windows helpfile and online manual appear to contain an error with regard to "Bad" Table name conventions. eg. they say :-
to access table with "bad" name use Table array i.e. $dal->Table["Order details"] This was driving me mad until with some experimentation I found it should be:-
The problem isn't the variable $dal; I have defined it at the beginning of my code snippet. It's the square brackets instead of normal ones. The working code snippet looks like this :- global $strTableName,$dal,$myvalue;
$_SESSION["StandardPrice"]=$datatmp["Cost per Delegate"]; If I put ** my application throws an error but with the normal brackets it works exactly as expected.