Jump to content

IE8 v Chrome - cell border problem


oohrogerpalmer

Recommended Posts

Hi

 

I have a .php page that shows a table populated by a database. In Chrome the table looks fine, but in IE (8) & Mozilla any blank cells have no borders, which makes reading the info a bit tricky. I'm sure it's something simple, but I can't find any reference to this specific problem.

 

The page is http://www.dunwoodpark.com/groups.php, and the code I'm using is :

 

<?php

mysql_connect(localhost, "*******", "********") or die(mysql_error());

mysql_select_db("*******") or die(mysql_error());

$result = mysql_query('SELECT org, website, position, Title, firstname, Surname, date FROM Dunwood WHERE `org`!="" AND `org`!="NULL" ');

echo "

Organisation

Website

Position

Title

Firstname

Surname

Date

";

while($row = mysql_fetch_array($result))

{

echo "

echo "

" . $row['org'] . "";

echo "

" . $row['website'] . "";

echo "

" . $row['position'] . "";

echo "

" . $row['Title'] . "";

echo "

" . $row['firstname'] . "";

echo "

" . $row['Surname'] . "";

echo "

" . $row['date'] . "";

echo "

";

}

echo "

";

mysql_close();

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...