Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. seems like a translation/better explanation is in-order here ... maybe you should rephrase/explain it Yeah, I'm not sure exactly what you want here. Please elaborate.
  2. Close, you had your quotes mixed up I think. This should work: echo " Radio {$row['titel']}";
  3. Hmm, I'm not sure. Try running something that you know works.
  4. Good. You may want to mark this solved and if you have a another question you should start a new thread.
  5. This topic has been moved to PHP Math Help. http://www.phpfreaks.com/forums/index.php?topic=320840.0
  6. What's the specific issue you're having? What happens? (Please use )
  7. I'm not familiar with DW. This doesn't seem like a PHP error but just to be sure add these 2 lines directly after your opening <?php tag: ini_set ("display_errors", "1"); error_reporting(E_ALL);
  8. Did you get it working?
  9. What's the error?
  10. Np, glad you sorted it out.
  11. Yes... yes it is.
  12. '$type' still isn't being defined. You need to add something like: $type= $query_data["type"];
  13. Another thing I noticed, in your query you have WHERE type='HHC', so why not just hard code the type?
  14. This topic has been moved to MySQL Help. http://www.phpfreaks.com/forums/index.php?topic=320829.0
  15. 'Group' is a reserved MySQL word. You can do one of two things: - Place backtics ` around your 'Group' column everywhere it's used. - Rename your column and change the appropriate queries.
  16. I see a few issues. - You don't select 'type' in your query. - $insType is never defined. (Please use tags)
  17. Try something like this: SELECT * from [table] WHERE (datetoclose = '') OR (assigneddate [today]) If your datetoclose is default to null then change the logic to 'datetoclose IS NULL'.
  18. I agree. And rule of thumb is if you don't need regex you should try to avoid it.
  19. What's the exact issue you're running into? You have the right idea and you need to echo it out.
  20. Your life or short tags?
  21. jwilson, I understand what you're saying but this particular issue is strictly MySQL. He was just missing a single quote before $state.
  22. Not through phpMyAdmin, I haven't used it in a very long time. There should be some sort of option to print out the table definition. If you have command line access then you can print it using: describe [table_name];
  23. Can you print out your table definition?
  24. Makes perfect sense. So you want to make your date column the primary key. Then you can use REPLACE INTO to insert/update your data. If the date exists, it will essentially update the row, if it doesn't then it will insert the fresh data with the new date.
×
×
  • 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.