Jump to content

blackairplane

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

blackairplane's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Ok, so it seems that one of my include() scripts was messing it up like you said. Thanks for the help, and unfortunately I am using a hosting service so I can't change the ini file.
  2. I searched through the forum, but didn't see a solution to this. I tested the if statement using an echo, and that worked fine, so I'm assuming that I did the header statement wrong. $password1= $_REQUEST['password1']; $password2= $_REQUEST['password2']; if ($password1 != $password2){ header("Location: http://www.lkaslfdksalkfd.com/register.php?error=1"); }
  3. Wow. It's the little foxes that spoil the vine. Thanks for the help!
  4. I'm having this issue where I'm populating a <multiple> HTML field with around 500 city names that are stored in a MySQL table, but when the page loads, it is only showing a portion of the rows (city names) with no obvious reason for why it's omitting some. <select multiple="multiple" size="10"> <?php while($row = mysql_fetch_array($result)) { echo "<option value='".$row['name'].">"; echo $row['name']; echo "</option>"; } ?> </select>
×
×
  • 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.