Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. It's not MySQL because when you echoed the query you said it was: SELECT * FROM timeslip WHERE 1 and Initials=" ORDER BY "Date" ASC, "Cost" ASC the variable has nothing in it. MySQL hasn't touched it at this point.
  2. It wasn't at first I had to fix the errors like you said! But now its working! Good
  3. Gotcha, I took it another way...
  4. Seems like a common problem. People have circumvented this by using some Javascript, check out this post: http://themeshaper.com/forums/topic/button-doesnt-work-in-ie
  5. Has this issue been resolved? Yeah, I mostly got it figured out..... I like your avatar....you must be a male? LOL.... I work as a pharmaceutical scientist during the day. Very much so
  6. Has this issue been resolved?
  7. Glad you got it working but I'm still confused how your script was even running with those errors.
  8. Can you show us the link locations for both browsers?
  9. So your $_SERVER['PHP_AUTH_USER'] and/or $_SERVER['PHP_AUTH_PW'] aren't being set. That's fine.
  10. You have a fatal error here: password = md5($password); verifypassword= = md5($verifypassword); You need to prefix variable names with '$'.
  11. Could you please elaborate on "My code is not functioning at all on my form."? What happens? Are there any errors?
  12. Can you post the entire PHP script?
  13. The load time is a bit long. I analyzed it with YSlow (which I recommend you do yourself) and you failed a few of the categories. Here's some suggestions (from YSlow) for load time:
  14. Do you mind sharing in case someone else has a similar problem?
  15. If you input the proper fields then nothing is supposed to output. What happens when you don't fill in one of the 4 fields in the IF statement? Does "Please fill in all fields!" output?
  16. This topic has been moved to PHP Regex. http://www.phpfreaks.com/forums/index.php?topic=321386.0
  17. What have you done to debug this issue? Are you sure you're not logged in and the login screen just isn't being hidden? I would start by echoing out inside some of your if statements to see where it's getting caught up. Also echo out some of your variables like '$token' & '$row[3]'.
  18. Yes, we need more information and what you are actually stuck on. If you need to do the entire thing we can tell you HOW to do it and point you in the right direction. What is kidstuff?
  19. You only enter the loop when $dup = true so there must not be a duplicate.
  20. Can I see your current code?
  21. Sorry, you didn't need that echo inside the echo Try this: ' . ($row['champion']==0) ? "Vacant" : "$row['champion']" . '
  22. Sure, something like this: ' . echo ($row['champion']==0) ? "Vacant" : "$row['champion']" . '
  23. Sorry, I thought that was one variable. Glad you solved it.
  24. If you're are echoing $_POST['Initials'] and it's blank then the issue is with the form that you're passing it from. Check that you're actually passing a value for that particular field.
  25. You need to add your password as the third parameter in the mysql_connect method.
×
×
  • 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.