Endtime
01-08-2003, 03:59 PM
Hi guys,
Very new to the whole Flash, PHP scene, and I have a few small questions : apologies in advance for the n00bness of them :D
1) Is it possible to create a preloader that preloaders a html page that has html and flash content?
2) I have a page where I am connecting to a database and pulling down user information ie : name, profession etc.. I then put this information into hidden fields on the page and also add the following into each hidden field :
<input name="hiddenField" type="hidden" value= "<?php print "&name=$name"; ?>" >
A flash file then goes and loads this file and a dynamic field then take the value "&name" and displays the content. Only problem is that flash displays : (if name was bob for example)
bob">
I can remove this by adding an exit command at the end of the php script,
<input name="hiddenField" type="hidden" value=<?php print "&name=$name"; exit; ?>'>
but this leaves the rest of the hidden fields unaccessable. Any help appreciated! :)
Very new to the whole Flash, PHP scene, and I have a few small questions : apologies in advance for the n00bness of them :D
1) Is it possible to create a preloader that preloaders a html page that has html and flash content?
2) I have a page where I am connecting to a database and pulling down user information ie : name, profession etc.. I then put this information into hidden fields on the page and also add the following into each hidden field :
<input name="hiddenField" type="hidden" value= "<?php print "&name=$name"; ?>" >
A flash file then goes and loads this file and a dynamic field then take the value "&name" and displays the content. Only problem is that flash displays : (if name was bob for example)
bob">
I can remove this by adding an exit command at the end of the php script,
<input name="hiddenField" type="hidden" value=<?php print "&name=$name"; exit; ?>'>
but this leaves the rest of the hidden fields unaccessable. Any help appreciated! :)