TeddyKiller Posted April 2, 2010 Share Posted April 2, 2010 Images are below. You can see what it is for me (complete) and what it is for someone else. I don't understand whats going on at all. My computer is running Windows 7 Ultimate and the laptop make is HP. The other persons computer is running Windows XP Professional and the computer make is Elonex Here is the PHP code of the form. echo '<a href="mail.php">Inbox Messages</a> - <a href="mail.php?act=sent">Sent Messages</a><br /> <fieldset><legend>Send Message</legend> <form action="" method="post"> <table> <tr><td>To:</td><td>'; echo '<select name="to"><option value="">Select User</option>'; $q = mysql_query("SELECT * FROM `users` ORDER BY `username` ASC"); while($r = mysql_fetch_array($q)){ echo "<option value=".$r['id'].">".ucwords($r['username'])."</option>"; } echo '</select></td></tr> <tr><td>Subject:</td><td<input type="text" name="subject" id="subject" size="59" /></td></tr> <tr><td>Message:</td><td<textarea name="message" cols="45" rows="5" value="'.$error['message'].'"></textarea></td></tr> <tr><td></td><td><input type="submit" name="send" value="Send!" /></td></tr> </table> </form> </fieldset>'; Here are the images. http://i278.photobucket.com/albums/kk87/JeanieTallis/hrbtest1.png - My view of whats showing http://i278.photobucket.com/albums/kk87/JeanieTallis/hrbtest.jpg - Other persons view of whats showing Can anyone help? Cheers! Link to comment https://forums.phpfreaks.com/topic/197406-whats-wrong-with-this-it-displays-2-different-things-for-2-different-computers/ Share on other sites More sharing options...
TeddyKiller Posted April 2, 2010 Author Share Posted April 2, 2010 I've tried decreasing the sizes of the fields too, that never done the job. EDIT: Damn typo in the <td>! Sorry for wasting your time teamatonic Link to comment https://forums.phpfreaks.com/topic/197406-whats-wrong-with-this-it-displays-2-different-things-for-2-different-computers/#findComment-1036169 Share on other sites More sharing options...
xoligy Posted April 2, 2010 Share Posted April 2, 2010 echo '</select></td></tr> <tr><td>Subject:</td><td><input type="text" name="subject" id="subject" size="59" /></td></tr> <tr><td>Message:</td><td><textarea name="message" cols="45" rows="5" value="'.$error['message'].'"></textarea></td></tr> <tr><td></td><td><input type="submit" name="send" value="Send!" /></td></tr> </table> </form> Try now </fieldset>'; Link to comment https://forums.phpfreaks.com/topic/197406-whats-wrong-with-this-it-displays-2-different-things-for-2-different-computers/#findComment-1036172 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.