Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. No sorry never had that problem, but I'm not surprised. Yet again another windows bug...
  2. The only time someone taught me PHP was in 1 class in college but it consisted of only half the semester. I've learned more in my internships and work than anything else. You just have to dive in a learn. Getting help and trying to help other people will certainly teach you a thing or two. Just hit the books and start pressing some keys.
  3. " = "
  4. After you login and it redirects you, you still see the login fields and the register link in the top nav. This is confusing to whether or not I'm logged in.
  5. Yeah, 10k amount of records is nothing for a database. Please post the code for this problem so we can fix it
  6. Maq

    Desktop SS

    I too have multiple computers at my place, that's a good idea to host your music, thanks.
  7. Maq

    ?= pages

    thorpe already gave you a link to a thread with an example. to assign the link: echo "{$row['uname']} "; $_GET the data from the link: if (isset($_GET['member'])) { echo $_GET['member']; } Please attempt to do something so we can help you.
  8. What's the problem?
  9. My favorite is probably some chicken fettuccine alfredo. But I like a pepperoni pizza and beer during my Sunday football games.
  10. Paste the code before this, where you actually assign $username its value.
  11. Maq

    Desktop SS

    External Hard drive!
  12. I'm not a fan of flashes in the header unless you do it right. It's annoying when they click on a link and the flash reloads. I would just have an image header and flash on the homepage.
  13. I'm glad it's solved, but do you mind telling us what the problem was?
  14. Yeah looks fine for me too. Maybe you're pointed to the dev server or something?
  15. The color scheme was intended to be sort of muted so that when I add photos or graphics, they really pop and look nice. This site isn't just going to be about PHP, it's more of a personal blog too, so yeah. The header image brightens it up just enough to not be too dull. xD
  16. Nice work jcombs, no negative feedback here, everything looks good!
  17. In FF it's centered but not IE6. Not sure about any other browsers...
  18. Haha, yeah I did the same thing with a DB at my work. I had a recursive function to incrementally grab records and I kept clogging the server because I was trying to update almost 100,000 records at once Sometimes it's better to learn the hard way because I will NEVER do that again.
  19. Damnit DW, you always beat me to it! >
  20. LIMIT X, Y X=your starting record Y=how many you want to grab FROM X So if you have 13 records and you start from 6 and grab 10 then of course you're going to get 7 more records. What are you trying to do?
  21. Like I said is_numeric will accept the '+' sign. You should use the regex that DW provided.
  22. Do not use number_format or is_numeric because they both will accept the '+' and '-' signs. I suggest you use a regex if you want purely numbers. This way you could make the input field more precise.
  23. It loaded fine for me on the first try...
  24. Yes it does work... Actually using it right now for xemacs
  25. I'm not sure but maybe the number_format accepts the '+' sign because it's thinking they're assigning it a positive value. ??? You might be better off checking it with a regular expression as well.
×
×
  • 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.