In my code editor, it normally displays PHP code in bold blue print. I'm finding some of my code is not showing up as bold blue print. Can someone please look at the code below and tell me if I'm doing something wrong? Thanks in advance.
<td class="hr"><?php echo htmlspecialchars("payroll number")." " ?></td>
<td class="dr"><input type="text" name="GevityNo" maxlength="10" value="<?php echo str_replace('"', '"', trim($row["GevityNo"])) ?>"></td>
</tr>
<tr>
<td class="hr"><?php echo htmlspecialchars("employee name")." " ?></td>
<td class="dr"><textarea cols="25" rows="1" name="employee_name" maxlength="75"><?php echo str_replace('"', '"', trim($row["employee_name"])) ?></textarea></td>
</tr>
<tr>
<td class="hr"><?php echo htmlspecialchars("Sex")." " ?></td>
<td class="dr"><select name="Sex">
<option value=""></option>
<?php
$lookupvalues = array("male","female");
reset($lookupvalues);
foreach($lookupvalues as $val){
$caption = $val;
if ($row["Sex"] == $val) {$selstr = " selected"; } else {$selstr = ""; }
?>
<option value="<?php echo $val ?>"<?php echo $selstr ?>><?php echo $caption ?></option>
<?php } ?>
</select>
</td>