Jump to content

ginerjm

Members
  • Posts

    6,906
  • Joined

  • Last visited

  • Days Won

    99

Everything posted by ginerjm

  1. Do you have error checking turned on? I dont' see it here.
  2. Looks confusing but apparently it looks better to you. You'll get it.
  3. Really? Debugging. The practice of putting echo statements in sections of your code so you can check what has happened. Echo $var; Echo "Got to this point". etc.
  4. Get the current date/time. When you are building your output, compare the date/time value you are thinking of outputting to the current d/t. If it is what you want to show, then show it. And repeat with the next date/time value you have. No? So now you need to learn some php. The manual has plenty of info on managing dates and datetimes.
  5. I don't know what you are doing. You want to "not display" a past date. What's the difficulty with that?
  6. Plain old debugging methods then. Put some echos thru your code to see where it goes and make sure it is doing what you think it's supposed to do.
  7. Do you get the rest of the echo statement?
  8. First - echo out the two password values so you can see what they are.
  9. What exactly is "It" that dies/goes away? Something on a page? Something in a table? What is "it"?
  10. None from me. I have no idea what you are doing, nor why you are trying. Seems like a waster of time.
  11. Are you saying you want to create an excel sheet? By displaying comma-separated text on a page with those headers (of which I know nothing about)? Can one do that? Have you looked closely at the data that you generated to ensure it is correctly formatted. Did you remove the trailing comma from the header row? Looking to learn from this exercise of yours. Of course, if this is a sometimes-exercise, can't you just save the file on the server in an accessible folder and then use an ftp client to bring it to your pc and manually import into excel?
  12. Allow me to vent: Why would you EVER want to do that? Done. Databases/tables are meant to store data in a meaningful and easily retrievable way. MySQL is a pretty efficient db. Of course you should create a column for each piece of data and store the data pieces in those columns. If you did this thing you propose, how would you ever locate specific items of information without pulling down ALL the rows, exploding each of them and searching through the resulting arrays. That doesn't sound very efficient does it?
  13. Your problem is here: if($hats == 0); header("Location:outofstock.php"); Too many semis. format of if statement is: if (conditions) { statement; (statement;).... } else { statement; (statement;).... }
  14. Not sure what you are asking. Are you proposing to make a comma-separated string and inserting all the data into one column of a table?
  15. Specifically - it's not the redirect that is failing you, is it? It is the series of tests you are making. Why not echo them all out and see what you have? That would be the best thing to show us to get help with.
  16. If you are talking about one of the many pages you have set up I'm guessing you are presenting the user with a blank poll page, he answers your questions and submits it, you process his votes, add them to your database and want to return a page showing the total vote counts for the topics on that page. Yes? So in the part where you display the questions and the vote input tags do this: On the first pass (voting pass) show the question and input tags but don't show the fields interspersed among the questions that will show the vote totals. On the second pass (after doing a db update and a query to get the new totals) show the questions again and this time also output the voting results after each question. No?
  17. OP: Something I just have to ask. Whatever do you MEAN when you say "the mouse is scrolling"? Could it be that your code is just generating so much data that your page is just spitting out line after line after line? trq: love that link!
  18. Have no idea what you are saying.
  19. Not very clear on how the default code is being generated. Obviously you want to tell whatever "other" code is generating that to generate your new code. So - can you show the "other" culprit?
  20. $q = "update into table (...) values(...)"; $qresults = MySQL_query($q); if (!$qresults) { echo "Error occurred in my query - message is ".MySQL_error()"; exit(); } This is good programming practice.
  21. Your value clauses are bogus. Take the dots out.
×
×
  • 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.