|
-
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.
-
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|