Jump to content

phppup

Members
  • Posts

    796
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by phppup

  1. if I have a form written in HTML, can I simple place the HTML inside the PHP tags to create the PHP file, or do I need to ECHO each and every line within the PHP in order for it to be published correctly?

  2. Ohhh, these thoughts just run through my head as I sleep.  But will it work?

     

    Can I set a function so that my UPDATE form will NOT execute after a certain DATE (or even a time of day?)

     

    I'm thinking something along the lines of:

    $time=timestamp

    if $time>19:00

      echo" You need to make changes before 7:PM";

    else (UPDATE... yadda yadda yadda)

     

    Yes, i know this is worse than a rough draft, but will it work?  Is it acceptable methodology?

  3. OK.  Is this code tested?

     

    Looks similar to what I was envisioning if I decide to allow input1 as area code, input2 as pre-fix, and input3 as last four digits.

     

    Then just put them together and $POST all three as one string (i can do that, can't i????)

     

    Thanks for the help.

  4. But willl JavaScript be able to validate in a similar manner?

     

    Thought I was better validating with JS first to lower the requirements of the server (which has the PHP)?

     

    (too much reading... people write stuff in tutorials, then you come here and discover it was all wrong... geesh)

    (i wonder if it's more frustrating for the newbies OR the pros!)

  5. Didn't know I could do that.  (more info?)

    And then, how would I validate it?  Right now I validate by confirming all characters are numeric. 

    Also, I have a maimum lengh of 10 characters that would be problematic if people start adding dashes and ().

     

     

  6. My DB has fields that primarily record numeric values. 

    I've noticed that a NUMBER in a VARCHAR field is aligned to the right and will hold decimal places, and a

    SMALLINT seems to align left and strip whole numbers to the bare digit (eg.: 4.0 is held to 4).

     

    What's the best way for me to store values, if I want them to hold at least ONE decimal place (so that whole numbers line up EVENLY with fractions:

    1.0

    1.5

    2.0 etc?

     

    Is there a way to "adjust" a setting within MySQL?  Or in the query that pulls the info?

  7. Is there a "PREFERRED METHOD" to handling telephone numbers gathered by a form?

     

    I'm torn between ideas.

     

    I need to collect the numbers, and want to be able to view them as (123)555-1212.

     

    Should I collect them as a 10 digit ONLY string, and strip them into area code, parenthesis, and hyphenated LATER?  Or gather them as 3 seperated input boxes posted to the DB accordingly?

     

    Obviously, entries will have REQUIREMENTS and error messages, so I am focused on the methodology here.  Thanks.

  8. Hard to believe I'm GIVING advice.  I suppose it's testimony to the learning that takes place here.

    I noticed in your first entry that you have error messages that state:

    "There was an error in the first name field" AND

    ""You have not filled out the form properly."

     

    This is a BAD idea that will aggrivate users.  Instead of telling them that there IS an error, tell them WHAT the error is so that it can be corrected.

     

    Use messages that explain WHY the error was triggered:

    "You MUST provide your name in the NAME field."

    "Only alphabetical letters without spaces can be used when filling out your name."

    "Please use ONLY numbers when providing your telephone number," etc.

     

    Use what is applicable for each independent error message.

  9. I am getting the result I expected with ORDER BY/GROUP BY queries 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 solution for this situation?

  10. 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?

  11. 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?

     

  12. 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?

     

     

  13. 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.

     

     

     

     

  14. 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?

×
×
  • 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.