Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Jessica

  1. You clearly know how to echo HTML within PHP cause you're doing it. You also know how to end PHP and do straight HTML. What are you confused about?
  2. Put them where you want them.
  3. You're over writing the values on the third page with presumably non existent posted values.
  4. Read the file into an array, and then use array_count_values
  5. Rage quit!!!! :-P
  6. I did, it's free for personal blogs. It's also not that expensive for commercial use, especially when you consider how good it is.
  7. ... I don't recall ever paying for it... How much does it cost? I'm sure it's worth it, it's amazing.
  8. When did they start charging for akismet?
  9. Do an inner join instead of left.
  10. You could use eval() but most likely you're doing something else wrong.
  11. No.
  12. You didn't really start the name of your tables with table_ did you? They need to be innodb to be real foreign keys, otherwise you don't need to do anything.
  13. Says the person who doesn't know what "sans" means... The irony
  14. If you want to share your code, try using Github.
  15. Glad the tutorial helped you. Each patient will have several records, so this is known as a many-to-one relationship. You should have one table for patients, and one for records. The records table will have a foreign key for patient ID. Do you already have that set up?
  16. I think you need some basic lessons on programming. You can't just copy and paste code into yours and expect it to work.
  17. Read the post in my signature on debugging sql
  18. order is a reserved word. Call the table something else, or use backticks. `order`
  19. It's called a JOIN
  20. If you want it in a separate table, no, don't create an empty row. Your code should handle inserting the new row if needed or editing the existing row. You should also use ids as your primary key, not username.
  21. Why is a profile a separate table?
  22. Try adding an "http://" in front of your link (either in the HTML or the DB.)
  23. But you didn't do it with the EXACT code he can just copy-paste into his script, so he'll keep asking until someone supplies that.
  24. So then wrap it in anchor tags like you did before.
  25. Well, sounds like $row doesn't exist. Not to mention, the code as shown would produce an infinate loop. Go read the php manual page for mysql_fetch_assoc or whatever function you want to use.
×
×
  • 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.