Ken Rudolph wrote: > Uh, oh, I just realized that several of my web pages were made by > automatically converting MS Excel 2003 files using the "Save as html" > command within Excel. Is that were deadly PHP4 "scripts" can occur?
Nope. Excel would generate *HTML* (as you said), not PHP, and likely in the form of HTML tables. PHP scripts are not "deadly." :-) http://us2.php.net/manual/en/index.php Read up there on what PHP scripts are. <?php if ($a > $b) echo "a is bigger than b"; ?> HTML is a 'markup' of text; PHP is a 'scripting' (programming) language. -- -bts -Four wheels carry the body; two wheels move the soul _______________________________________________ support-seamonkey mailing list [email protected] https://lists.mozilla.org/listinfo/support-seamonkey

