Jump to content

phppup

Members
  • Posts

    892
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by phppup

  1. How do I accomplish the task of PADDING? IS this a common occurence?
  2. OKAY, just noticed a twist! Apparently I am getting the result I expected WITH a troubling EXCEPTION: the data is being IN ORDER from 0 thru 9, but 10 (which in this test sample is my LARGEST quantity) is being inserted between the ONE and 2 quantity. Not sure if this will occur with ALL teen values, as well as hundreds. The column is a SMALLINT field (not sure if that makes a difference)> Is there a ssolution for this situation?
  3. I have a database of assorted. Each row contains defined QUANTITIES for each column item. Example: columns for shirt, tie, pants, socks. A row would indicate a purchase of 2 shirts, 1 tie, 0 pants, 3 socks for customer A. Followed by a row indicate a purchase of 1 shirts, 1 tie, 4 pants, 2 socks for customer B, etc. Now I want to sort EACH item, group them by quantity, and get an ordered list by quantity, that provides me with something like this: 1 shirt customer B 2 shirt customer C 3 shirt customer F 3 shirt customer H 4 shirt customer D, etc. I am using this code for my query: $query = "SELECT brisket, COUNT(brisket) FROM pass GROUP BY brisket ORDER BY brisket ASC"; but it is not organizing the info in a correlated manner. Help?
  4. Is REQUIRE ONCE the best method versus REQUIRE or INCLUDE? I've read lots of links, but am curious to hear from a REAL user.
  5. I am creating several files with the same connection information. I already REQUIRE_ONCE my connection data that has all the 'secret entry data', but am wondering, if this is my current code in the top of the files: $con = require_once('connection.php'); if (!$con) { die('Could not connect!' . mysql_error()); } mysql_select_db("$database") or die('Choose a database ' . mysql_error()); And then a $query/$result Can the lines BEFORE the $query go into an INCLUDE file ALSO if they are going to be constant and repeated, or do they have to be hardcoded into each file individually?
  6. This WILL be used in a CONTROLLED environment. So what's the easiest/most effective approach (as I'm not acquainted w/JQuery and AJAX)?
  7. I have a page that will sort my DB table by name and telephone number. And it has a button. I want visitors to be able to input a last name, and have the telephone number provided in a SEPERATE and NEW window after they click the button. Any suggestions for best procedure? My two initial concepts are: 1- Make this a form, with the "action" leading to a file like SELECT *FROM myTable WHERE last name="$inputname" and have then use Javascript ONSUBMIT to open a NEW window. (not sure it will succeed as I desire) 2- Make this a simple BUTTON with Javascript pointing everything to the file to process the quiery. PS: I've heard IE doesn't always handle "_BLANK" properly, and I'm unaware of a PHP method. Haven't thought it through entirely, so I'm looking for pointers and advise.
  8. Unfortunately, php.net is sometimes tOo 'technically oriented for a beginner to wade through, and their are no easy to understand example for the BEGINNERS. The other sites are EASILY understood..... although the code is flawed... LOL.
  9. will check it tomorrow. But thanks! Took a quick look and it seems to simplify the process. Enjoy the weekend.
  10. I have a form that was written and works well as an HTML file. Now I've learned a little (tip of the iceberg, i'm sure) and want to place password protection BEFORE it. To the best of my knowledge, this will require SESSIONS and turning my form into a PHP file. (I assume LOTS of reading is ahead of me... LOL) Can I simply change the extension to a PHP, add the <? tags > and just keep the HTML in place? Or do I need to make it PHP and ECHO every line of code? Or is there another way? And while on the subject, does a PHP file require anything before publishing, the way an HTML requires the <!DOCTYPE> information?
  11. Hey Pik! Haven't had a chance to plug it in. It'll have to wait til another day, but I wanted to see if I was on the rigth track. What do YOU think of it?
  12. Isn't that what I did. Are you trying to be a wiseguy and waste my time, or do you have an actual solution to suggest to improve my code? If so, please POST IT!
  13. Does out of date mean the code will NOT work?? They do have a friendly look and easy to follow instructions (even if they are WRONG... LOL) What sites DO you RECOMMEND as a learning tool?
  14. How would i code if I wanted to do as you suggested and; just increment by 1 every time an update occurs.
  15. But then how do you get them to increment?
  16. Don't know how to do what you suggested, so I went with what I could think of.. LOL
  17. I got to thinking late last night (which generally leads to trouble), so please be gentle if some educating is in order, as I suppose I will touch a few related issues. As I develop my database, I will include two seperate columns. One for the time/date that an order was placed. A second for the time/date that an order is updated (unless there's a better way, please inform me). I pressume that if a record is updated several times, it will continually overwrite the time/date to the point that I will only see the latest update. Now I was wondering if I could create a third column to keep count of the number of times a record had been updated, so if it were altered 16 times, I would know when the last update occurred, and have the count number also. Will something like this coding work? SELECT updates FROM myTable WHERE id="$id" $updates =n if n<1, n=1 }else{ n++
  18. Well, i plugged in a TIME charachter that's NEW to 5.1 and it did NOT work. The one for 4.1 did okay though, so, being as I'm too lazy to check the server info, I'm gonna say it's 4.1 Meanwhile, I know the server and DB is on California time. Gosh, I'll have to dig up the code I once wrote that simply added 3 hours to the time (unless someone has it handy). If I remember correctly, I had to add it in a multiple of seconds or minutes (like 3 x 60x 60). Oh well, I have BIGGER issues with the damn database... LOL.
  19. I see what mikosiko is saying. Your DATE is being GIVEN on the same page. So date and ID (which I assume is automated by the table) are sort of a guarantee. If you're putting data in for the other fields from a form, you need to MATCH the 'name' in the form with the 'name' in this script so that it can be put into the table (make sense). Backtrack your steps, and make sure the form ACTION is naming THIS FILE with EXTENSION.
  20. I recognize the code (i was on that website TOO). And what I got needed to be tinkered with before it would work. Try re-reading the webpages before it to make sure any files or code that was used in a tutorial PRIOR to this one, are written properly and in your pocession. Check to make sure all the file names and field names follow the same structure. Good luck!
  21. And why would someone want the redundancy of the statement the way I had originally copied it?
  22. But what's the benefit of having it versus not using anything??
  23. I'm stillnot exactly sure that I understand EXACTLY what that first line is COMMANDING. (as a newbie, some code just ends up in my script because a resource SAID it SHOULD be there, and NOT because i FULLY understand WHY i would WANT it there)
  24. Why do you say that? And if you READ the ABOVE comments, this is just basic information!
  25. Read the link, thanks! Is there a way to confirm a table or row SIZE so that this is known BEFORE adding additional columns or running into trouble?
×
×
  • 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.