Jump to content

Whats wrong with this? It displays 2 different things for 2 different computers


TeddyKiller

Recommended Posts

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!

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>';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.