I have dynamic data ( i.e. , user created ) data in a mySQL table. I want to process it on the client side, that is turn it into HTML.
Currently I use php to take the mySQL data and send it to the client for processing like below:
I plan on replacing document.write with .innerHTML and calling the .innerHTML function with the rest of my page initialization functions.
Someone on this post said this is an ugly solution. If so what is a better way to do this?
One change I could make is to pass the structured data as a global variable and call a function internally (i.e. not from the page). But I would still need to use PHP to write out the structured data directly to the browser..i.e. you would still see it when you view->source the page.
Is there a way to pass structured data (JSON or other) directly to the browser where it is completely transparent? Some way where it won't show up in view->source.
PHP Code:
<?php
$Object = new ObjectMaker();
$ObjectTweet=$Object->makeTweetSmall();
$ObjectTweet->pageInsert();
?>
HTML Output
<script type='text/javascript'>document.write(Arc.ViewHTweet(
'1|Test Account|1329782549|1329782546|\\\'||1|Test
Account|1329782549|1329782544|\\\\||1|Test
Account|1329782549|1329782540|hi||1|Test
Account|1329782549|1329781792|\\\'||1|Test
Account|1329782549|1329781707|hi\\\\||1|Test
Account|1329782549|1329781701|/||1|Test
Account|1329782549|1329781675|<a class=\'bookmark_tweet\' target=\'_blank\' href=\'http://bing.com\'>hi\\\\</a>'
))</script>