Jump to content

Quendian

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Quendian's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. That worked like a charm, thank you.
  2. Sorry <ul> <li><a class='menu' href='index.php?cat=Home'>Home</a> <ul> <li>test</li> </ul> </li> </ul> <ul> <li><a class='menu' href='index.php?cat=Contact'>Contact Us</a> <ul> <li>test</li> </ul> </li> </ul>
  3. I have hacked together this CSS to make a drop out menu: The only problem is that the drop out menus open up even if you don't hover your mouse over the link, e.g. you can hold your mouse on the other side of the page and the menu will pop out. ul { padding: 0; margin: 0; list-style-type: none; } li { font: 12px Arial; } ul li { position: relative; } li ul { display: none; } li:hover ul{ position: absolute; display: block; border-bottom: thin solid black; width: 120px; background: rgb(255, 255, 255); z-index: 1; left: 125px; top: 0; }
  4. If you are using an excel spreadsheet use it in CSV format, it makes things incredibly easy. Just a heads up.
  5. Your are closing your html tag before you close your form tag. Your code: <HTML> <form action="upload.php?try=true" method="post" enctype="multipart/form-data"> <p> <label for="file">Select a file:</label> <input type="file" name="userfile" id="file"> <br /> <button>Upload File</button> <p> </HTML> </form>
  6. Of course. Thank you.
  7. It just refreshes the page.
  8. When I click submit, it doesn't send me to the correct place. My form: <form method='post' target='password.php?target=edit&action=2'> Password: <input type='password' name='password'><br> New Password: <input type='password' name='new'><br> Confirm: <input type='password' name='confirm'><br> <input type='submit'></form>
  9. You can have loops inside loops, these are called embedded loops. (embedded for loop, embedded while loop etc) You have to be careful with what variables you change though because it will have adverse effects on the other loops like causing infinite loops etc.
  10. I am using a form to upload a file but I'm having trouble checking the file type. I only want the user to be able to upload .jpg and .jpeg file formats so I check the file type like so: if(($_FILES["file"]["type"] != "image/jpeg") || ($_FILES["file"]["type"] != "image/jpg")) { echo "Image not in correct format (". $_FILES["file"]["type"] . ")."; } But even when I upload an image with the correct file type it complains? How embarrassing, I fixed it. I was using the wrong operator in the if statement. I replaced it with && and it worked. Sorry.
×
×
  • 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.