Don't know where else to post this ...
but I think I've found something PHP Can't do:
Note this is from C...
struct ch_record
{
char payto[48]; / line of text used for "Pay To:" or description/comment /
char date[10]; / date of transaction in MM/DD/YY text format /
int number; / check number /
int cleared; / 1 for 'yes', 0 for 'no' /
float amount; / amount of transaction in dollar and cents format /
};
struct ch_record[100] / can also be ch_record */
then somewhere in the code :
ch_record[n].number ... // or other reverence
I realize the above is using C code.. but
as I said before, I can't find how to use this in PHP...