Hi
Ok what you want to do is possible in a fashion. You cannot simply assign a block of HTML to a php variable or do so with a function. However there is a number of ways to get the result you wish. 1 as I've mentioned above is to investigate the use of a templating engine (I suggest you do this its worth while anyway). The second is to use an output buffer.
One of the problems you have is that any HTML you have in your page is immediately sent to the client which means it cant be used as a variable in php. However if you use the functions
ob_start and ob_end_fush you can achive what you want.
eg
<?php
somesetupcode();
ob_start(); ?>
<html>
<body>
html text
</body>
</html>
<?php
//This will assign everything that has been output since call to ob_start to your variable.
$myHTML = ob_get_contents() ;
ob_end_flush();
?>
Hope this helps you can read up on output buffers in php docs.
Update:Fixed a bug in my code :)