You can easily convert any of your byte codes to php with the search and replace function in your FM. Just make a copy of the byte script you want to convert from javascript to php and put it in a new file by itself, naming that file with a php extension. Follow the steps in the table below, in the order given. When you have completed the search and replace you should have a script that is a php script. Put your other html codes before and after the php script to set your body background. The rest of the HTML on your page such as <body> etc. can stay as they are. Only the php code itself needs to be between the <?php and ?> brackets. If there is a nested table in your byte code however, this will not work. Nests need a special code to work in php. See reference to it in my Tute
| SEARCH FOR | REPLACE WITH |
| plus sign + | comma dollar sign ,$ |
| right parenthesis semicolon ); | semicolon ; |
| write parenthesis write( | echo space dollar sign echo $ |
| var space var  | dollar sign no space $ |
| delete curly bracket } | |
| delete <script language = "javascript"> and use <?php | |
| delete </script>and use ?> | |