Posted by dittonamed on 12/14/06 09:18
To anyone who reads this, thank you very much. I have an annoying
problem hidden in the code below and I need your help. It causes
different problems in different browsers, but all point to a problem
with how the table tags are embedded. Dreamweaver even shows some lines
as highlighted yellow. I put a '%' in front of the lines that
dreamweaver highlights for a hint.
Anyone?
####################
<table align="center" border="0" cellpadding="0" cellspacing="0">
% <tr>
<td>
Location
<form action="<?echo $PHP_SELF?>" method="post" style="display:
inline;">
<select name="loc" onchange="this.form.submit()" style="font-size:
11px;">
<option value="loc1">Location 1</option>
<option value="loc2">Location 2</option>
<option value="loc3">Location 3</option>
</select>
</form>
<span><font color="#cccccc"> | </font></span>
</td>
<?php
# Search Form
php?>
% <td>
<form action="<?echo $PHP_SELF?>?loc=<?echo $loc?>" method="post"
style="display: inline;">
<input type="text" size="21" name="search" style="font-size: 11px;
border:1px solid">
<input type="submit" value="Search" style="border:1px solid;
background-color:#087da5; color: #FFFFFF; font-size: 10px;">
% </td>
% </tr>
<tr>
<td> </td>
<td>
<?
# Advanced Search Options
?>
<input type="checkbox" name="idon">
<span class="smallblack">Lookup an ID</span>
</form>
</td>
</tr></table>
<?
[Back to original message]
|