get value from flash

Discussion in 'PHP' started by nagasharmi, Jul 31, 2007.

  1. #1
    how can we get value from flash
    if anybody knows please send fast
     
    nagasharmi, Jul 31, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    I guess the flash sends either a POST or GET request to the server.

    So either:
    
    $foo = $_POST['foo'];
    
    // Or
    
    $foo = $_GET['foo'];
    
    PHP:
    Should work...
     
    nico_swd, Jul 31, 2007 IP
  3. picobello

    picobello Well-Known Member

    Messages:
    572
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    110
    #3
    You're right ... that's correct
     
    picobello, Jul 31, 2007 IP