I have a small problem that maybe someone could please explain to me.
I have built a site using a combination of PhP and Javascript with a great deal of help from people here. Thanks for all the help.
The problem is with the site located at http://www.kokusaibuhin.com
The drop down lists and the matching GO! buttons used to take me to the right place. (At that time, I was using a dynamic DNS service that worked ok, but caused the URL in the address box to never change.)
So, I upgraded my Domain to Custom DNS (from dyndns.org) so that it is now directly addressable. Only now, the above GO! button code is broken! What the.....?
To see the identical code do what it is supposed to do, check out http://www.sgthost.dyndns.org . (You can use the English link to access an identical page just in English if you want to)
Can anyone tell me what is going on here? Just in case, below is the code for the entire form on the left side of the page.
Code: Select all
<form action="japanese/j_search.php" method="get" name="form2" target="_parent">
<table width="239" height="33" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="27"> </td>
<td width="123" align="right" valign="middle"> <select name="cat_select" id="cat_select">
<?php
do {
?>
<option value="<?php echo $row_rs_categoriesї'prod_category_num']?>"><?php echo $row_rs_categoriesї'prod_category_j_name']?></option>
<?php
} while ($row_rs_categories = mysql_fetch_assoc($rs_categories));
$rows = mysql_num_rows($rs_categories);
if($rows > 0) {
mysql_data_seek($rs_categories, 0);
$row_rs_categories = mysql_fetch_assoc($rs_categories);
}
?>
</select></td>
<td width="32"> </td>
<td width="57"><a href="javascript:;" onClick="formButtonFever('form2','submit')"><img src="images/go.gif" width="50" height="25" border="0"></a></td>
</tr>
</table>
</form>--------------------------
SteedVLX