Say you have the codes like these
<form name="form1" method="post" action="next.php">
<input type="text" name="cost">
</form>
<form name="form2" method="post" action="previous.php">
<input type="text" name="cost">
</form>
It is perfectly legal that the both text fields has the name as "cost" in 2 different forms, form1 and form2 in one page, right?
But the Dreamweaver has the tendency to change the second text field for you to the name of "cost2" AUTOMATICALLY.
<form name="form1" method="post" action="next.php">
<input type="text" name="cost">
</form>
<form name="form2" method="post" action="previous.php">
<input type="text" name="cost2">
</form>
Is there a way to turn off this Dreamweaver feature? Because it will continue cause problems if Dreamweaver changed the field name for me without my awarness. Specially, if the non-programmer designer come to this page and only made some graphic design changes, but dreamweaver will change the field name for him at the same time. And the designer may think he never touched the programming codes part, and saved it. That will casue the programming errors.