Jump to content

niche

Members
  • Posts

    3,671
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by niche

  1. What can you tell us about your code?
  2. why do you think you need that?
  3. https://www.w3schools.com/css/css_align.asp
  4. 6 warnings and 3 errors. which specific one do you want to work on first?
  5. check the validator https://validator.w3.org/ Always start there
  6. https://www.w3schools.com/css/css_align.asp
  7. Turns out this is the answer: WHERE t1.id < t2.id AND CONCAT(t1.col1,t1.col2) = CONCAT(t2.col1,t2.col2) Duh!
  8. this script deletes dupe rows when table_key is a column: DELETE t1 FROM obssum_history t1 INNER JOIN obssum_history t2 WHERE t1.id < t2.id AND t1.table_key = t2.table_key how would I do that when table_key is a column alias? Already tried something like this (when table_key is NOT contained in the table): USING CONCAT(col1, col2) AS table_key DELETE t1 FROM obssum_history t1 INNER JOIN obssum_history t2 WHERE t1.id < t2.id AND t1.table_key = t2.table_key didn't work.
  9. Use percentages https://stackoverflow.com/questions/3029422/how-do-i-auto-resize-an-image-to-fit-a-div-container
  10. https://www.w3schools.com/sql/sql_injection.asp
  11. Create a HTML doc with a <div>, put something in it and post your code. That's most of us got started.
  12. niche

    Dates within range

    https://www.w3schools.com/sql/sql_between.asp
  13. niche

    HTML / CSS stylesheet

    where's the ref to the cino directory in "/css/style.css"?
  14. https://stackoverflow.com/questions/6833867/close-kill-transaction
  15. niche

    Customizing W3.CSS

    http://bdavidxyz.com/blog/how-to-name-css-classes/
  16. What does teamsArrOb actually look like?
  17. What are you basing your dynamic assignment on? I don't see a string or array? REST API is not a database. https://medium.com/@marinithiago/guys-rest-apis-are-not-databases-60db4e1120e4
  18. Why client side, w/ javascript and some kind of database, instead of server side, w/ something like PHP and MYSQL? I'd go w/ PHP and MYSQL to dynamically populate a menu, but that's me. Please confirm that you've thought about client side / server side and purposely chose client side.
  19. Please limit each question to a single question. I suggest you post a notice that you suspend this thread and re submit per my suggestion. EDIT Also, please limit your code posts to the relevant part and please use the code tags <>.
  20. I'd do it client side with php. either way you'd need to know something about php (server side) or javascript (client side). else, the answer is probably beyond your current capabilities. Someone else might have a different approach/opinion. We're happy to help as long as you try to ask informed questions. The best hint I can give you is that you'll probably need to use some kind of loop. so, read up on php loops specifically and php in general and try to rough out how you'd fit a php loop into your code. First things first, though. you'll need to set a localhost. i'd use wampserver for that. So, install wampserver (assuming you're using windows) and get back with us. The step after that is familiarizing yourself w/ php. This will be a leap worth taking.
×
×
  • Create New...