Why is PHP automatically changing my "<" and similar tags automatically to "<" when it processes a page? It's driving me crazy! How can I bend a website to my will when it has a mind of it's own?!?!
-Taylor
-Taylor
| Code: |
| <?php
session_start(); include ('/PATH~/1top.php'); echo $_SESSION['inputtextarea1']; include ('/PATH~/2bot.php'); include ('/PATH~/tracker.php'); ?> |
| Code: |
|
<html><head> <title>Bla</title> </head> <body> <?php echo "<b>hello</b>"; ?> </body> </html> |
| Code: |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |