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. <?php $num = intval($age); if($num < 0 || $num > 99){ // not valid. } ?>
  4. you might want to be using natsort
  5. you'd probably want to use highlight string in this case, but either would work
  6. Yes, read my signature. There's lots of tutorials out there on how to use mod_rewrite.
  7. Where are you telling it to go to profile.php? You're not making much sense to me.
  8. I see what you're saying now. Thanks for clearing it up.
  9. So? He could just give them a login to the phpMyAdmin
  10. You mean how to call it? Update($value);
  11. Maybe because it just says insert email here instead of an email
  12. It's probably the text editor you are using to save your files.
  13. if it's a lot more than that, make an array and use in_array()
  14. Because you have new cell rows each time. Remove the closing and opening trs between your values...
  15. 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.
  16. 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.
  17. there isn't one. You can use anti-aliasing in PHP's image functions
  18. 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.