Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Jessica

  1. I personally would keep them as their own tables.
  2. In the future, you might want to say what you're trying to do, if you want advice on how to do it.
  3. Better yet, normalize that data!!
  4. What sort of data is line of business? That may need to be it's own table, and then you store an ID in the employees table.
  5. I would have two tables. Employees employee_id employee_name (etc etc) tickets (unsigned int) Transactions transaction_id employee_id manager_id (also an employee, look into normalization if you need to) transaction_tickets (unsigned int) datetime (etc etc) Make sense?
  6. See how your error says "AGAINST('')" and your query says AGAINST ('". $keyword ."')?? That means that your $keyword is empty. Post your updated code.
  7. Are you trying to keep record of when/why they got added/removed as well?
  8. You're missing a comma between your fields in the field list, and also your $keyword is blank. There might be more, I don't know much about match.
  9. I guess you could give each button or link an anchor tag with a name, and then link to the same anchor tag in your link. That is what anchors are for.
  10. should't "eighty eight" read "eighty-eight"?
  11. Have you ever entered a raffle?
  12. If you don't want to refresh the page when you do something, you HAVE to use javascript. If that something requires working with PHP or MySQL, you HAVE to use AJAX.
  13. See the link in my signature about SQL.
  14. OP, are you being deliberately obtuse?
  15. Are you saying that if you echo $_GET['u'] you get key%20west? Then just run the urldecode on it. Why do you want to add dashes? If you want to replace spaces dashes either do that after the urldecode (you're doing an empty string '', not a space), or do it before the decode, not after.
  16. That won't stop the script from executing The script type declaration is optional, you can still include it.
  17. The checkbox name needs to be an array name="values[]"
  18. Why are you asking about asp.net on a php forum? I never understand this.
  19. Then set the border to 1px solid grey, instead of nothing.
×
×
  • 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.