Its not quite that easy, but it isnt too hard either...
HTML is HTML, the only thing you have to do different here is escape " marks, you have to do this because " mean something different in PHP, its a way of telling the script to skip it...
so if you have a HTML line
table border="0" width="871" align="center" cellpadding="0" cellspacing="0">
for this script that line beocmes
table border=\"0\" width=\"871\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">
|