probá esto en tu server a ver que ves
   
Código PHP:
Ver original- <?php 
- $wname = "A"; 
- $wemail = "B"; 
- $wmessage = "C"; 
- ?> 
- <!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"> 
- <head> 
- <title>titulo</title>  
- <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
- </head> 
- <body> 
- <table width="550" border="1" cellspacing="2" cellpadding="2"> 
-  <tr bgcolor="#eeffee"> 
-  <td>Name</td> 
-  <td><?php echo $wname; ?></td> 
-  </tr> 
-  <tr bgcolor="#eeeeff"> 
-  <td>Email</td> 
-  <td><?=$wemail; ?></td> 
-  </tr> 
-  <tr bgcolor="#eeeeff"> 
-  <td>Message</td> 
-  <td><?=$wmessage;?></td> 
-  </tr> 
-  </table> 
- </body> 
- </html> 
Saludos