Okay ive been reading some of these tutorials on Kirupa, and have a pretty good understanding of it. Im still having some troubles getting my PHP variables into Flash though.
This code in PHP:
$date = date(m);
$time = date(i);
print (textbox_var1=$date);
print (textbox_var2=$time);
And Flash:
loadVariables("php_document.php", this, "GET");
And the textboxes in Flash, have the variable names: textbox_var1 and textbox_var2. Now i would think that Flash would retrieve the information in the textboxes, and it does, in the first one only… The second textbox doesnt retrieve anything, and in the first it writes: 15textbox_var2=$time);
Cant Flash handle 2 different prints, or is my PHP the problem?