Having done some code in dreamweaver I needed some code to be added, i was sent the code by a friend and inserted it. The code worked fine but now I need to make some changes. The code appears as a small php icon on the preview page !!! what does this mean ??
Below is the snippet of code that i need to change. Is there something there that needs changing to be recognised in dreamweaver.
<?php $horizcount=0; do {
$areaname = $row_area['area'];
if (!$areaname) { $areaname = "No Area"; }
$count = $row_area['count'];
echo "<td><input type=\"checkbox\" value=\"$areaname\" name=\"location[]\"> $areaname ($count)</td>";
$horizcount +=1;
if ($horizcount == 4) { echo "</tr><tr>"; $horizcount=0; }
} while ($row_area = mysql_fetch_assoc($area)); ?>