Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Jessica

  1. You could also just use one page, and only display the part of the form that is next, based on that session variable. That way users can't even try to skip ahead.
  2. darkfreaks, wtf? That will make 22.5 into 225. pacchiee, using intval() will make 22.5 into 22. If you want to check and see if they've entered 22.5 you could use strpos to determine if they've entered a . in the number.
  3. That's what intval does.
  4. <?php $num = intval($age); if($num < 0 || $num > 99){ // not valid. } ?>
  5. Or you could use ajax.
  6. you might want to be using natsort
  7. you'd probably want to use highlight string in this case, but either would work
  8. Yes, read my signature. There's lots of tutorials out there on how to use mod_rewrite.
  9. print out the sql?
  10. Where are you telling it to go to profile.php? You're not making much sense to me.
  11. mod rewrite in .htaccess
  12. and what is the problem?
  13. I see what you're saying now. Thanks for clearing it up.
  14. So? He could just give them a login to the phpMyAdmin
  15. You mean how to call it? Update($value);
  16. Maybe because it just says insert email here instead of an email
  17. What do you mean "fails"
  18. It's probably the text editor you are using to save your files.
  19. Doesn't CPanel come with phpMyAdmin?
  20. if it's a lot more than that, make an array and use in_array()
  21. Because you have new cell rows each time. Remove the closing and opening trs between your values...
  22. Obviously if I don't want to access them in other functions, I wouldn't want to set them as the class variables. I don't want to override the existing class variables.
  23. You have tr and td backwards. This is an HTML, not a PHP question. tr means table row. td is a table cell. you don't put a row inside a cell.
  24. there isn't one. You can use anti-aliasing in PHP's image functions
  25. Make the results go into an array, and then return that array.
×
×
  • 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.