A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: loading info into multiple textboxes with php

  1. #1
    Junior Member
    Join Date
    Oct 2001
    Posts
    3
    dear all,

    i need help with php/flash. i have a movie with 2 textboxes (dynamic) in them. using the loadvars action to load a php file, i'm only able to write data into one box. eg.
    <?php
    print("text=text");
    print("text1=textabc");
    ?>

    what appears in my movie textbox 'text' is 'texttext1=textabc'. is there a way i can output stuff to BOTH textboxes in a single script? thanx for your help.

  2. #2
    Junior Member
    Join Date
    Feb 2001
    Posts
    8

    help?

    Didn't look if this is an older post but there is an answer to you're question.

    You must give the textboxes different names:
    textbox1
    textbox2

    <?

    echo "textbox1=" . urlencode("$text1")
    "&=&textbox2=" . urlencode("$text2")
    ; //echo end
    ?>


    after the first variable use && or &=&, I always test it with textfiles!

    something like this I figure, hope it helps....

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center