Dreamweaver auto correcting PHP scripts

wxdqz

New Member
Can someone please tell me how to stop Dreamweaver from automatically changing my PHP scripts? I've already turned the HTML Rewriting options off but its still trying to be smart. Dreamweaver rewrites the following

print " <tr>\n <td>";
print $rPosition;
print "\n </td>\n <td><a href=http://www.phpbuilder.com/board/archive/index.php/\"";
print $rLink;
print "\">";
print $rName;
print "</a></td></tr>\n";

to


print " <tr>\n <td>";
print $rPosition;
print "\n </td>\n <td><a href=\"";print $rLink "\">";
print $rName;
print "</a></td></tr>\n";

Please help... its really frustrating.
 
Back
Top