Note that there are some explanatory texts on larger screens.

plurals
  1. POHTML Button doesn't work in IE, but other browsers fine
    text
    copied!<p>I am writing a small database viewer.. I have a link at the bottom as you can see sending an id to another page. This button works on every other browser except IE.</p> <p>Any ideas?</p> <p>If I click on it on IE, it does nothing.</p> <pre><code> &lt;?php include_once('include/opendb.php'); $query = "SELECT id, rep, date, account, areacode, number, address1, address2, city, state, zip, fax, descmaker1, descmaker2, title, email, cvendor, cequipment, leaseexp1, leaseexp2, leaseexp3, leaseexp4, leaseexp5, leaseexp6, volume, notes FROM accounts"; $result = mysql_query($query); $entrytotal = mysql_num_rows($result); echo '&lt;div id="entrytotal"&gt;' . $entrytotal . ' Total Accounts&lt;/div&gt;'; while($row = mysql_fetch_row($result)){ $id = $row[0]; $rep = $row[1]; $date = $row[2]; $account = $row[3]; $areacode = $row[4]; $number = $row[5]; $address1 = $row[6]; $address2 = $row[7]; $city = $row[8]; $descmaker1 = $row[12]; $descmaker2 = $row[13]; $title = $row[14]; $email = $row[15]; $cvendor = $row[16]; $cequipment = $row[17]; $leaseexp1 = $row[18]; $leaseexp3 = $row[20]; $volume = $row[24]; echo '&lt;tr&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $rep . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $date . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $account . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $address1 . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $city . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $descmaker1 . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $descmaker2 . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $title . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $cvendor . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $leaseexp1 . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo '&lt;td width="120" align="middle"&gt;&lt;font color="black"&gt;&lt;b&gt;' . $leaseexp3 . '&lt;/b&gt;&lt;/font&gt;&lt;/td&gt;'; echo "&lt;td width='120' align='middle'&gt;&lt;a href='info.php?id=" . $id . "'&gt;&lt;input style='font-family:Helvetica; width: 50px;' type='submit' value='Info'&gt;&lt;/a&gt;&lt;/td&gt;"; echo '&lt;/tr&gt;'; } ?&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload