How Do I Make A Sequential Alphanumeric String Generator?

Discussion in 'PHP' started by interwho, Aug 29, 2010.

  1. interwho

    interwho Member

    Messages:
    198
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    30
    #21
    Now I Get This as an output:

    Array
    (
        [0] => Array
            (
            )
    
        [1] => Array
            (
                [0] => 0
            )
    
        [2] => Array
            (
                [0] => 1
            )
    
        [3] => Array
            (
                [0] => 1
                [1] => 0
            )
    
        [4] => Array
            (
                [0] => 2
            )
    
        [5] => Array
            (
                [0] => 2
                [1] => 0
            )
    
        [6] => Array
            (
                [0] => 2
                [1] => 1
            )
    
    PHP:
    All the way to 1032. How do I use this?
     
    interwho, Sep 7, 2010 IP
  2. Gray Fox

    Gray Fox Well-Known Member

    Messages:
    196
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    130
    #22
    You should probably try it again, it only has 2 lines, if it still doesn't work, replace the comma with a dot.
     
    Gray Fox, Sep 7, 2010 IP
  3. interwho

    interwho Member

    Messages:
    198
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    30
    #23
    I got it working, but the output is in arrays. How do I make those arrays useful?
     
    interwho, Sep 7, 2010 IP
  4. danx10

    danx10 Peon

    Messages:
    1,179
    Likes Received:
    44
    Best Answers:
    2
    Trophy Points:
    0
    #24
    danx10, Sep 8, 2010 IP