Thread: phMailer
View Single Post
  #4  
Old 12-10-2007, 07:48 PM
Lakie is offline Lakie

Join Date: Mar 2002
Posts: 5,540

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\">
Reply With Quote