Re: [PHP] Using Ajax to spit out a php-generated embed tag

2005-10-31 Thread Graham Anderson
I actually got it pretty quickly after reading the Rasmus AJAX tutorial It was simple and easy to understand. Thank you, Rasmus :) I just needed to seemlessly launch the QuickTime player from a Flash page. Seems like Ajax is going to do this quite nicely. g On Oct 30, 2005, at 10:06 PM,

[PHP] Using Ajax to spit out a php-generated embed tag

2005-10-30 Thread Graham Anderson
Can you use AJAX to output an entire php-generated embed tag into a web page? something like: ?php // simple no frills qt embed $qtembed = EOB item ?xml version=1.0 encoding=UTF-8? object classid=clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B height=352 width=216

Re: [PHP] Using Ajax to spit out a php-generated embed tag

2005-10-30 Thread comex
Can you use AJAX to output an entire php-generated embed tag into a web page? You could use XMLHttpRequest's responseText property with innerHTML, which is probably easier than using XML. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php