Link to home
Start Free TrialLog in
Avatar of VAL1N
VAL1N

asked on

VB.NET Read PHP Array Output.

Hi, I have a function that reads php page, the php page outputs data as an array:



Array
(
    [GameMaster] => TestMaster
    [CycleStartDate] => 2012-08-01 00:00:00
    [CycleEndDate] => 2012-08-31 23:59:59
    [SolvedTickets] => 1414
    [FirstTicket] => 2012-08-01 00:01
    [LastTicket] => 2012-08-31 11:34
    [ServerTimeZone] => America/New_York
    [ServerTimeStamp] => 2012-09-02 18:52:03
    [TicketTypes] => Array
        (
            [Purposefully Feeding] => 339
            [Item Spamming/Abuse] => 165
            [Spam Purchasing Items (Couriers, etc)] => 131
            [Avoiding AFK Detection] => 492
            [Destroying Item(s)] => 89
            [Excessive Verbal Abuse] => 198
        )

    [TicketDecisions] => Array
        (
            [Guilty] => 593
            [Warning] => 289
            [Innocent] => 522
            [Undone] => 10
        )

    [Dates] => Array
        (
            [2012-08-31] => 5
            [2012-08-30] => 167
            [2012-08-29] => 177
            [2012-08-27] => 99
            [2012-08-26] => 109
            [2012-08-25] => 65
            [2012-08-24] => 34
            [2012-08-23] => 11
            [2012-08-15] => 93
            [2012-08-13] => 8
            [2012-08-12] => 160
            [2012-08-11] => 144
            [2012-08-10] => 136
            [2012-08-09] => 4
            [2012-08-08] => 80
            [2012-08-07] => 1
            [2012-08-06] => 32
            [2012-08-05] => 67
            [2012-08-01] => 22
        )

)

How do I read this data correctly using VB.NET ?
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial