Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. Echo your query to make sure it's correct, particularly the $m_id, and put in or die(mysql_error());
  2. Show us a few lines before that, your query is most likely failing and your $result is not a resource id. Echo $num_rows, see what the value is.
  3. I had 3 group interviews for my current position and the main reason was for a personality test to ensure I would get along with everyone and am easy to work with. For the most part, they filter out skill just by looking at resumes (which, on average, they view for less than 20 seconds) but of course most of the questions will be technical questions related to the position. I think everyone else gave solid advice (especially Gizmola) and if you listen to them you'll be fine.
  4. Notices won't but errors will. Post the output.
  5. Turn on error reporting to see what's going on by placing these 2 lines at the top of your page: ini_set ("display_errors", "1"); error_reporting(E_ALL);
  6. Post the relevant code.
  7. I want you to ask a question.
  8. I liked the Head First books by Oreilly. Easy to understand and fun examples. Here's a list: http://oreilly.com/store/series/headfirst.html
  9. xc0n, I understand your frustration but don't exacerbate onto others (sounds dirty). This is a free service with volunteers and the the people you put down have been here for years and some are the most helpful members of this board. I wouldn't be surprised if they ignore your future questions, don't bite the hand that feeds you... @Everyone, now let's play nice and get along
  10. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=339775.0
  11. You should be checking server side first. After that, you can add JS for user-friendliness. I'll move you to the PHP Coding Help section and after you have that accomplished start a new thread in the JS section for client side checking help.
  12. The point was to start by communicating in a more professional manner. Although he did state he wasn't fluent in English.. So, people that are non-fluent in English write in multiple colors, center their text, and don't know how to format?
  13. Heh, that's a crazy username.
  14. Did you remove $at1 = array(); and replace it with $at1 = ""; ?
  15. You can implode the result set as well, but here is another example: while ($row = mysql_fetch_array($result)) { $comma_separated .= $row['upc'] . ","; } echo rtrim($comma_separated, ",");
  16. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=339680.0
  17. This is usually done in the .htaccess with mod_rewrite, we have a section for that, I'll move you there.
  18. Create the comma-separated string in the first mysql_fetch_array() call. The rest of the code is just redundant.
  19. What's happening? Errors? Blank page? What?
  20. Maq

    Query

    As suggested above, we need more information. You haven't actually asked a question and we don't know what the problem is you're having.
  21. This topic has been moved to PHP Freelancing. http://www.phpfreaks.com/forums/index.php?topic=339654.0
  22. Did you try Googleing - "php registration form"?
  23. Yeah they should, I dunno what it is about this place...
  24. Google "javascript time clock", there are plenty of examples & tutorials for you to learn from.
  25. I think it's only available in Miscellaneous and maybe some others.
×
×
  • 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.