southbeach
Programmer
I have PHP scripts which uses XAJAX to emulate an AJAX call to a user defined function. Called function then uses
to load what would be the rendered content which in turn is pushed back to calling script using XAJAX standard code (return $objResponse after having set $objResponse accordingly).
Everything about the expected page is shown (data grid and all basic HTML content) but not the flash object or the chart.
Running in debug mode, I can see that the code for the flash object is there but the movie itself does not show.
If I bypass the calling script and execute the PHP script which is responsible for rendering the data grid and the chart graph, it works fine.
Any suggestions?
thank you all in advance!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.
Code:
///////
$_SESSION['error']='; $_SESSION['procfailed']=0;
ob_start();
include $filename;
$contents = '<center>' . ob_get_contents() . '</center>';
ob_end_clean();
///////
Everything about the expected page is shown (data grid and all basic HTML content) but not the flash object or the chart.
Running in debug mode, I can see that the code for the flash object is there but the movie itself does not show.
If I bypass the calling script and execute the PHP script which is responsible for rendering the data grid and the chart graph, it works fine.
Any suggestions?
thank you all in advance!
--
SouthBeach
The good thing about not knowing is the opportunity to learn - Yours truly, 2008.