The PhpEd editor does not allow me to put breakpoints on lines like 3 and 4.
1: <th>
2: <div id="colHeader">IP Address </div>
3: Empty<input type="checkbox" name="searchForEmptyIpAddress" <?php echo ($this->searchForEmptyIpAddress == "on") ? " CHECKED" : "";?>>
4: <input name="ipAddressSearch" style="width:8em" value="<?php echo stripslashes($this->ipAddressSearch); ?>">
5: </th>
|
It isn't always practical to break lines up so that the php code is on a line of its own. Is it not possible to handle breakpoints for these cases?
TIA,
Nick Weavers