My poll is stopped working in IE, I think it possibly might be to do with something I changed in the code a while ago but I can't remember what I did. The poll is on this home page. And the code I may have changed at some point: <?php if ($totalpolls > 0) { if (!isset ($_REQUEST['option']) && !isset ($_REQUEST['results']) && $votecookies != 'no' && $voteip != 'no' && $blocked != 'yes' && $started == 'yes' && $expired == 'no' && $polls['voting'] == 'yes') { $poll = mysql_fetch_array (mysql_query ("SELECT pollid, title, voting, results, graph FROM polls WHERE pollid='$whatpoll'")); $option = mysql_query ("SELECT optionid, options, order_id FROM options WHERE pollid='$whatpoll' ORDER BY order_id ASC"); ?> <form action="<?= $_SERVER['PHP_SELF']; ?>" method="post" name="frmPoll"> <b><?= $poll['title']; ?></b><br /> <?php while ($optionrows = mysql_fetch_array ($option)) { ?> <input name="option" type="radio" value="<?= $optionrows['optionid']; ?>"<?php if ($optionrows['order_id'] == 1) { echo " "; } ?>/> <?= $optionrows['options']; ?> <br /> <?php } ?> <input name="stage" type="hidden" value="2"/><input name="poll" type="hidden" value="<?= $poll['pollid']; ?>"/><input name="btnVote" style="background-color: #EBEBEB; height: 21px; width: 54px;" type="submit" value="Vote" /> <?php if ($poll['results'] == 'yes' && $poll['graph'] == 'yes') { ?><a href="<?= $_SERVER['PHP_SELF']; ?>?poll=<?= $whatpoll; ?>&results=1" ></a><?php } ?> <br /> </form> <?php } $poll = mysql_fetch_array (mysql_query ("SELECT pollid, title, voting, results, graph, resultsvotes FROM polls WHERE pollid='$whatpoll'")); if (($blocked == 'yes' | $voteip == 'no' | $votecookies == 'no' | isset ($_REQUEST['results']) | $poll['voting'] == 'no' | isset ($_REQUEST['option'])) && $poll['graph'] == 'yes' && $started == 'yes') { if (((isset ($_REQUEST['results']) && $poll['results'] == 'yes' && ($voteip != 'yes' | $votecookies != 'yes')) | !isset ($_REQUEST['results'])) && $started == 'yes') { $option = mysql_query ("SELECT options, votes, images, order_id FROM options WHERE pollid='$whatpoll' ORDER BY order_id ASC"); $total = mysql_fetch_assoc (mysql_query ("SELECT SUM(votes) AS total FROM options WHERE pollid='$whatpoll'")); ?> <div class="poll_title"><?= $poll['title']; ?></div> <?php //$dir2='/poll/images'; while ($optionrows = mysql_fetch_array ($option)) { @$percent = round (($optionrows['votes'] / $total['total']) * 100); /*if ($optionrows['images'] == 'random') { if ($handle = opendir ($dir2)) { while (false !== ($file = readdir ($handle))) { if ($file != '.' && $file != '..') { $files[] = $file; } } shuffle ($files); } $rand = rand (0, (count ($files) - 1)); $optionrows['images'] = $files[$rand]; } */ $optionrows['images'] = '/poll/images/image1.gif'; ?> <?= $optionrows['options']; ?> - <i><?= $percent; ?>%</i><?php if ($poll['resultsvotes'] == "yes") { echo " / ".$optionrows['votes']." Votes"; } ?> <div class="poll_option"><img src="<?= $optionrows['images']; ?>" width="<?= ($percent * $width) + 1; ?>" height="6" alt="Result bar for <?= $optionrows['options']; ?>" /></div> <?php } ?> <!-- [ <a href="http://www.murraysworld.com/suggest-poll/" rel="nofollow">Suggest a Poll</a> ]--><?php if ($poll['resultsvotes'] == "yes") { ?><b>Total Votes: <?= $total['total']; ?></b><?php } if (isset ($_REQUEST['results'])) {?><br /> <a href="<?= $_SERVER['PHP_SELF']; ?>?poll=<?= $whatpoll; ?>" >Vote On Poll</a><?php } ?> <?php } } } else { ?> <div align="center" ><b>Error:</b> There are currently no polls. Please <a href="admin/index.php" >create</a> one.</div> <?php } if ($totalpolls > 0 && $poll['voting'] == 'no' && $poll['graph'] == 'no') { ?> <div align="center" >Sorry you cannot vote or view results on this poll.</div> <?php } if ($totalpolls > 0 && $poll['voting'] == 'yes' && $poll['graph'] == 'no' && isset ($_REQUEST['option'])) { ?> <div align="center" >Thanks for voting on the poll.</div> <?php } if ($totalpolls > 0 && $poll['voting'] == 'yes' && $poll['graph'] == 'no' && ($voteip == 'no' | $votecookies == 'no') && !isset ($_REQUEST['option'])) { ?> <div align="center" >Sorry, you cannot view the results for poll <b><?= $polls['title']; ?></b></div> <?php } if ($totalpolls > 0 && $poll['results'] == 'no' && isset ($_REQUEST['results'])) { ?> <div align="center" >Sorry, you cannot view the results for poll <b><?= $polls['title']; ?></b></div> <?php } ?> Code (markup): Some other related code: <?php include ("config.php"); if (isset ($_REQUEST['poll'])) { $result = mysql_query ("SELECT pollid, title, starts, expires, vote, voting, results, graph, resultsvotes, ip, cookies FROM polls WHERE status='on' AND pollid='$_REQUEST[poll]'"); } else { $result = mysql_query ("SELECT pollid, title, starts, expires, vote, voting, results, graph, resultsvotes, ip, cookies FROM polls WHERE status='on' ORDER BY pollid DESC LIMIT 1"); } $totalpolls = mysql_num_rows ($result); if ($totalpolls > 0) { $polls = mysql_fetch_array ($result); $whatpoll = $polls['pollid']; $title = $polls['title']; // Calculate Poll Expiration list ($dayx, $monthx, $yearx) = explode ("/", $polls['expires']); $now = mktime (0, 0, 0, date ("m"), date ("d"), date ("Y")); $expire = mktime (0, 0, 0, $monthx, $dayx, $yearx); if ($expire <= $now) { $expired = "yes"; } else { $expired = "no"; } // Calculate Poll Start if ($expired == "no") { list ($days, $months, $years) = explode ("/", $polls['starts']); $starts = mktime (0, 0, 0, $months, $days, $years); if ($starts > $now) { $started = "no"; } else { $started = "yes"; } } else { $started = "no"; } // Check if IP is blocked from voting $blockcheck = mysql_num_rows (mysql_query ("SELECT blockedid FROM blocked WHERE (polls LIKE '%$polls[title]%' OR polls LIKE '%all%') AND ip='$_SERVER[REMOTE_ADDR]'")); if ($blockcheck == 0) { $blocked = "no"; } else { $blocked = "yes"; } // Check if user has voted (IP) if ($polls['ip'] == "yes") { $check = mysql_query ("SELECT ipid, vote FROM ip WHERE title='$polls[title]' AND ip='$_SERVER[REMOTE_ADDR]'"); $checkip = mysql_num_rows ($check); $ip = mysql_fetch_array ($check); if ($checkip == 0 | $ip['vote'] < time ()) { $voteip = "yes"; } else { $voteip = "no"; } if ($ip['vote'] <= time ()) { mysql_query ("DELETE FROM ip WHERE title='$polls[title]' AND ip='$_SERVER[REMOTE_ADDR]'"); } } else { $voteip = "none"; } // Check if user has voted (Cookie) if ($polls['cookies'] == "yes") { if (isset ($_COOKIE[$whatpoll])) { if ($_COOKIE[$whatpoll] == $title) { $votecookies = "no"; } else { $votecookies = "yes"; } } else { $votecookies = "yes"; } } else { $votecookies = "none"; } if (isset ($_POST['stage'])) { $polls = mysql_fetch_array (mysql_query ("SELECT title, vote, ip, cookies FROM polls WHERE status='on' AND pollid='$_POST[poll]'")); $options = mysql_fetch_array (mysql_query ("SELECT optionid, options, votes FROM options WHERE pollid='$_POST[poll]' AND optionid='$_POST[option]'")); $title = $polls['title']; $nextvote = $polls['vote'] + time (); $votes = $options['votes'] + 1; if ($polls['ip'] == "yes" && $voteip != 'no') { $ip = mysql_fetch_array (mysql_query ("SELECT ipid FROM ip ORDER BY ipid DESC")); $ipid = $ip['ipid'] + 1; mysql_query ("INSERT INTO ip (ipid, title, ip, vote) VALUES ('$ipid', '$polls[title]', '$_SERVER[REMOTE_ADDR]', '$nextvote')"); } if ($polls['cookies'] == "yes" && $votecookies != 'no') { setcookie ($whatpoll, $title, $nextvote); } if ($votecookies != 'no' && $voteip != 'no' && $blocked != 'yes' && $started == 'yes' && $expired == 'no') { mysql_query ("UPDATE options SET votes='$votes' WHERE optionid='$options[optionid]'"); } } } ?> Code (markup):
If it works in one, but not the other, I'd say its client side. Has any HTML changed? Do you have a <form> within a <form> by accident (FF interprets this well, IE doesn't)? Jay
I know it's client side but it happens for everyone with IE7 so it's a client side issue that needs to be fixed server side. And as you can see from the code above, <form> is properly closed. I think I did change something in the code at some point but I can't remember what
I know what you mean, I was only making a suggestion Can you paste the live html output of the script (i.e. the one IE messes up on, but FF works with), within tags please? Jay Code (markup):
So basically what happens is in IE7 when they click Vote it just refreshes as if they haven't voted when it should show the results immediately. <!-- Poll --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_poll.jpg" width="116" height="12" alt="MurraysWorld Poll" /></div> <div class="navbar_poll"> <form action="/index.php" method="post" name="frmPoll"> <b>Is it too early for Murray to release an autobiography?</b><br /> <input name="option" type="radio" value="206" /> Yes. <br /> <input name="option" type="radio" value="207"/> No. <br /> <input name="stage" type="hidden" value="2"/><input name="poll" type="hidden" value="50"/><input name="btnVote" style="background-color: #EBEBEB; height: 21px; width: 54px;" type="submit" value="Vote" /> <br /> </form> </div> <!-- /Poll --> Code (markup):
Is that the entire page, or just the poll part? Can you add <?php var_dump($_POST);?> PHP: then try voting on the poll to see if IE7 is actually posting the data? Jay
Added your var_dump thing but made no difference Here is all the code, excluding some news stories: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- Header --> <head> <title>Andy Murray - Tennis News</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="Andy Murray tennis news with message board, results, video, schedule and pictures." /> <meta name="keywords" content="andy murray, murray, andy, tennis, news" /> <meta http-equiv="content-language" content="en-gb" /> <meta name="robots" content="noodp" /> <link media="all" href="/mw.css?8" type="text/css" rel="stylesheet" /> <!--[if lt IE 7]> <link media="all" href="/mw_ie.css?6" type="text/css" rel="stylesheet" /> <![endif]--> <link rel="stylesheet" href="/mobile.css" type="text/css" media="handheld" /> <link rel="shortcut icon" href="/favicon.ico" /> <link rel="alternate" type="application/rss+xml" href="http://feeds.feedburner.com/andy-murray-news" title="Andy Murray News via RSS" /> <meta name="verify-v1" content="3WMSNDzPDvAphG6ySB+/OjZB27SEzwE9ggvxtKdKMgA=" /> <script type="text/javascript" src="/mw.js"></script> <noscript><link media="all" href="/noscript.css" type="text/css" rel="stylesheet" /></noscript> </head> <!-- /Header --> <body> <!--<div style="width: 1000px; margin: 0 auto;">--> <div id="main_container"> <div id="banner"> <a href="/" title="Andy Murray"><img src="/img/banners/mw_banner.jpg" width="977" height="70" alt="Andy Murray" /></a></div> <!-- <a href="/"><img src="/img/banners/mw_banner_birthday.png" width="800" height="70" alt="Andy Murray Tennis News" /></a>--> </div> <div id="wrapper_parent"> <!-- News --> <div id="newswrapper"> <!--<div class="update_box_header"></div><div class="update_box">Andy Murray takes on Carlos Moya at 5pm BST today in the Quarter-Final - <a href="http://www.murraysworld.com/talk/murray-v-moya-t12277.0.html;new#new">Your views?</a></div>--><!--<br /><br />## You must click the 'Edit' button to add the hide tags, using Quick Edit will not allow you to do this. ##<br /><br />--> <!--<div class="update_box_header"></div><div class="update_box_news">MurraysWorld.com is three-years-old today, <a href="http://www.murraysworld.com/talk/hey-guys-im-three-today-t12118.0.html;msg350621">Happy Birthday to us!</a></div>--> <div class="news_body"> <h2><a class="news_h1" href="http://www.murraysworld.com/talk/murray-outclassed-by-nadal-t12107.0.html">Murray outclassed by Nadal</a></h2><div class="date">Filed July 02, 2008, 08:13:22 PM | <a class="nav" href="http://www.murraysworld.com/talk/murray-outclassed-by-nadal-t12107.0.html">41 comments</a> » <a class="nav" href="http://www.murraysworld.com/talk/index.php?action=post;topic=12107.41;num_replies=41">add comment</a></div> <div class="cimg"><img src="http://www.murraysworld.com/img/news/wimbledon.jpg" align="right" alt="Article related image" /></div> Andy Murray simply couldn't match the sheer ferocity of Rafael Nadal this evening on Centre Court as he succumbed to a 3-6 2-6 4-6 quarter final loss against the number two seed.<br /><br />The first set started typically of their previous encounters, long, powerful rallies with Murray doing all the running. The British number one had to fight off numerous break point opportunites from early on, but Nadal's relentless groundstrokes carved out the break in the eighth game, and he duly served out the first set with ease.<br /><br />The Spaniard's energy spilled over into the second set, playing swashbuckling tennis including some incredible passing shots on the full stretch. As for Murray, he looked devoid of passion and the so called aggression that was needed to trouble the world number two. Nadal continued to power through his service games, winning the vast majority of points on both his first and second serves.<br /><br /><q>He played so much better than me. It was difficult for me to get into a rhythm and I felt rushed on every point.</q><br />Murray tried to be more aggressive in the third set, but Nadal continued to defend resolutely and exploit the chinks in the Scot's armour. The outcome was starting to look inevitable and Nadal broke and held to secure a semi final meeting with Arnaud Clement or Rainer Schuettler. </div><div align="right"><b><a href="http://www.murraysworld.com/talk/news-b12.0" rel="nofollow">older news » </a></b></div> <br /> <div class="bottom_message">Welcome to the leading Andrew Murray website. This is the central resource for anything Andy Murray related. You can keep up to date with <a class="light" href="/andy-murray-ranking/">Andy Murray ranking</a> in the ATP <a class="light" href="/andy-murray-ranking/">here</a>. Fans often post up their <a class="light" href="/talk/murray-pictures-t412.0.html">Andy Murray pictures</a> taken from the latest ATP tournaments. And for the girls, you might be interested in some photos of <a class="light" href="/talk/andy-murray-shirtless-t673.0.html">Andy Murray shirtless</a> if you take a look around. Our biggest asset here is our <a class="light" href="/talk/index.php">Andy Murray forum</a>, the <a class="light" href="/talk/andy-talk-b1.0/">Andy Murray message board</a> has the biggest community of Murray fans on the net. We realise many people find us from searching <a class="light" href="/andy-murray-girlfriend/">Andy Murray Girlfriend</a> and we would therefore recommend you read her profile <a class="light" href="/andy-murray-girlfriend/">here</a>.</div> </div> <!-- /News --> <!-- Leftbar --> <div id="navbar_wrapper"><!-- Leftbar Wrapper --> <!-- Navigation --> <div class="padding_top"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_murrays.jpg" width="80" height="12" alt="Site Navigation" /></div> <div class="navbar_main"> <a class="leftnav" href="/">» Homepage</a> <a class="leftnav" href="/talk/andy-talk-b1.0/">» Message Board</a> <!-- <a class="leftnav" href="/pictures/">» Pictures</a>--> <a class="leftnav" href="/results/">» Results</a> <a class="leftnav" href="/video/">» Video</a> <a class="leftnav" href="/schedule/">» Schedule</a> <a class="leftnav" href="/biography/">» Biography</a> <a class="leftnav" href="/career/">» Career</a> <a class="leftnav" href="/profile/">» Profile</a> <a class="leftnav" href="/quotes/" >» Quotes</a> <a class="leftnav" href="/wallpaper/">» Wallpapers</a> <a class="leftnav" href="/avatar/">» Avatars</a> <a class="leftnav" href="/talk/index.php">» Forum Index</a> </div> <!-- /Navigation --> <!-- Ranking --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_ranking.jpg" width="116" height="12" alt="Andy Murray Ranking" /></div> <div class="navbar"><strong><a class="nav" href="/andy-murray-ranking/"> Entry: <span class="rank_green">9</span> Race: <span class="rank_green">6</span> </a></strong> <!-- Entry: <span class="rank_green">8</span> Race: <span class="rank_green">11</span>--> </div> <!-- Ranking --> <!-- Poll --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_poll.jpg" width="116" height="12" alt="MurraysWorld Poll" /></div> <div class="navbar_poll"> <form action="/index.php" method="post" name="frmPoll"> <b>Is it too early for Murray to release an autobiography?</b><br /> <input name="option" type="radio" value="206" /> Yes. <br /> <input name="option" type="radio" value="207"/> No. <br /> <input name="stage" type="hidden" value="2"/><input name="poll" type="hidden" value="50"/><input name="btnVote" style="background-color: #EBEBEB; height: 21px; width: 54px;" type="submit" value="Vote" /> <br /> </form> array(0) { } </div> <!-- /Poll --> <!-- Forums --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_forums.jpg" width="116" height="12" alt="MurraysWorld Forum Details" /></div> <div class="navbar"> Total Members: <a href="http://www.murraysworld.com/talk/index.php?action=mlist" rel="nofollow">1241</a><br /> Total Posts: 349950<br /> Total Topics: 5835 <br /> Total Categories: 3<br /> Total Boards: 19<br /> <a class="nav" href="/talk/index.php">View Forum</a> </div> <!-- /Forums --> <!-- MW Info --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_comms.jpg" width="116" height="12" alt="MurraysWorld Communications" /></div> <div class="navbar"> <a class="nav" href="/about/" rel="nofollow">About Us</a><br /> <a class="nav" href="/team/" rel="nofollow">The Team</a><br /> <a class="nav" href="/links/" rel="nofollow">Links</a> </div> <!-- /MW Info --> <!-- Partners --> <div class="padding"></div> <div class="navheader_left"><img src="/img/murraysworld_nav_partners.jpg" width="116" height="12" alt="MurraysWorld Communications" /></div> <div class="navbar_other"> <a class="light" target="_blank" href="http://www.tennisservedfresh.com">Tennis Fashion</a><br /> <a class="light" target="_blank" href="http://www.sharapovazone.com/">Maria Sharapova</a><br /> </div> <!-- /Partners --> <!-- RSS --> <div class="padding"></div> <div class="navbar_other"> <a class="light" href="http://feeds.feedburner.com/andy-murray-news" rel="alternate" type="application/rss+xml">Subscribe</a><br /> <a class="light" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=859685" rel="nofollow" target="_blank">Email Updates</a><br /> <a class="light" href="/mobile/" rel="nofollow">Mobile / PDA</a> </div> <!-- /RSS --> </div><!-- /Lefbar Wrapper --> <!-- /Leftbar --><!-- Rightbar --> <!-- Rightbar Wrapper --> <div id="rightbar_wrapper"> <div class="padding_top"></div> <!-- Recent Discussions --> <div class="navheader_right"><a class="nav" href="/talk/index.php"><img src="/img/murraysworld_nav_recent_top.jpg" width="171" height="12" alt="Andy Murray Forum Discussions" /></a></div> <div class="rightbar_box"> » <a class="nav" href="http://www.murraysworld.com/talk/harkleroad-to-pose-naked-for-playboy-t11763.0.html;msg356716;topicseen#new" rel="nofollow"> Harkleroad to pose naked for Pl</a> <a class="nav" href="http://www.murraysworld.com/talk/harkleroad-to-pose-naked-for-playboy-t11763.0.html;msg356716;topicseen#new" rel="nofollow"> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/olympics-2008-t12275.0.html;msg356715;topicseen#new" rel="nofollow"> Olympics 2008</a> <a class="nav" href="http://www.murraysworld.com/talk/olympics-2008-t12275.0.html;msg356715;topicseen#new" rel="nofollow"> <img src="/img/new-recent.gif" width="23" height="9" alt="New post" border="0" /> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/predictions-for-next-year-t8375.0.html;msg356714;topicseen#new" rel="nofollow"> Predictions for next year!</a> <a class="nav" href="http://www.murraysworld.com/talk/predictions-for-next-year-t8375.0.html;msg356714;topicseen#new" rel="nofollow"> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/cincinatti-2008-t12244.0.html;msg356712;topicseen#new" rel="nofollow"> Cincinatti 2008</a> <a class="nav" href="http://www.murraysworld.com/talk/cincinatti-2008-t12244.0.html;msg356712;topicseen#new" rel="nofollow"> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/news-headquarters-t7550.0.html;msg356709;topicseen#new" rel="nofollow"> News Headquarters</a> <a class="nav" href="http://www.murraysworld.com/talk/news-headquarters-t7550.0.html;msg356709;topicseen#new" rel="nofollow"> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/cricket-thread-t1101.0.html;msg356706;topicseen#new" rel="nofollow"> Cricket Thread</a> <a class="nav" href="http://www.murraysworld.com/talk/cricket-thread-t1101.0.html;msg356706;topicseen#new" rel="nofollow"> <img src="/img/new-recent.gif" width="23" height="9" alt="New post" border="0" /> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/ranking-next-week-t5224.0.html;msg356705;topicseen#new" rel="nofollow"> Ranking next week...</a> <a class="nav" href="http://www.murraysworld.com/talk/ranking-next-week-t5224.0.html;msg356705;topicseen#new" rel="nofollow"> </a><br /> » <a class="nav" href="http://www.murraysworld.com/talk/murrray-vs-karlovic-t12285.0.html;msg356703;topicseen#new" rel="nofollow"> Murrray v's Karlovic</a> <a class="nav" href="http://www.murraysworld.com/talk/murrray-vs-karlovic-t12285.0.html;msg356703;topicseen#new" rel="nofollow"> </a><br /></div> <!-- /Recent Discussions --> <!-- Next Tournament --> <div class="padding"></div> <div class="navheader_right"><img src="/img/murraysworld_nav_next_t.jpg" width="130" height="12" alt="Next Tournament" /></div> <div class="rightbar_box"> <a class="nav" href="http://www.murraysworld.com/talk/andy-talk/andys-progress-cincinnati-ms-2008-t11985.0.html" target="_blank">Cincinnati MS: 28th July</a><br /><a href="http://www.protennislive.com/frameset.asp?year=2008&wkno=31&lang=en&tabno=1&eventid=0422&ref=www.atptennis.com" target="_blank">Live Scores</a> | <a href="http://www.cincytennis.com/" target="_blank">Website</a> | <a href="http://www.atptennis.com/en/common/TrackIt.asp?file=http://www.atptennis.com/1/posting/2008/422/mds.pdf" target="_blank">Draw</a> | <a href="http://www.atptennis.com/en/common/TrackIt.asp?file=http://www.atptennis.com/1/posting/2008/422/op.pdf" target="_blank">OOP</a> | <a href="http://www.murraysworld.com/talk/murray-pictures-t412.0.html;new#new">Pictures</a><br /><div class="break"></div><a href="http://www.murraysworld.com/talk/rankings-spreadsheet-cincinnati-masters-280708-t12237.0.html">View Ranking Spreadsheet</a> <img src="http://www.murraysworld.com/img/excel.jpg" alt="" border="0" align="absbottom" /> (members only) </div> <!-- /Next Tournament --> <div class="padding"></div> <!--<a href="/talk/andy-talk-b1.0/"><img src="/img/banners/totheforums.jpg" alt="Register to the Forum" height="171" width="169" /></a>--> <a href="http://www.murraysworld.com/talk/andy-talk-b1.0/"><img src="/img/banners/wimbledon-skyscraper.jpg" width="236" height="300" alt="" /></a> <div class="padding"></div> <a class="nav" href="/video/"><img src="/img/banners/videos.jpg" width="236" height="104" alt="Latest Videos" /></a> <div class="padding"></div><a class="nav" href="/talk/readtheround-b24.0/"><img src="/img/banners/rr-small2.jpg" width="236" height="104" alt="Read-The-Round Contest" /></a> <!-- <div class="padding"></div><div class="navheader_right"><img src="/img/murraysworld_nav_account.jpg" width="171" height="12" alt="Account" /></div> <div class="rightbar_box_other"> php ssi_login(); ssi_welcome(); ssi_logout(); ?> </div>--> </div> <!-- /Rightbar_wrapper --> <!-- /Rightbar --><!-- TraceWatch --> <!-- /TraceWatch --> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-225883-1"; urchinTracker(); </script> <!-- Footer --> <div class="footer"></div><!-- /Footer --> </div><!-- /Wrapper Parent --> <div class="footer2"> Copyright © 2005-2008 MurraysWorld.com, all rights reserved <br /> <a class="light" href="mailto:admin[at]murraysworld.com">Contact Us</a> | <a class="light" href="http://feeds.feedburner.com/andy-murray-news" rel="alternate" type="application/rss+xml">News RSS</a> </div> </body> </html> Code (markup):