Jump to content

phppup

Members
  • Posts

    862
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by phppup

  1. AFTER CONNECTION:

     

    //save the data on the DB and send the email
    
    if(isset($_POST['action']) && $_POST['action'] == 'submitform')
    {
    //recieve the variables
    
    $roastturkey = $_POST['roastturkey'];
    $broccoli = $_POST['broccoli'];
    $brisket = $_POST['brisket'];
    $carrots = $_POST['carrots'];   }
    
    
    $record_id = (isset($_POST['record_id'])) ? $_POST['record_id'] : '';//check for $record_id emptiness
    if(!empty($record_id)){
    
    echo "<pre>", print_r($_POST), "</pre>";
    
    
    $testtable = array();foreach($_POST as $indexName => $value) {     $testtable[] = "$indexName = \"$value\"";}
    $fields = implode(",", $testtable);
    $sql=("UPDATE testtable SET $fields WHERE id = $record_id ");
    
    echo "<pre>", print_r($_POST), "</pre";
    
    echo "$sql";
    
    $result=mysql_query($sql);	
    
    }
    if($result){
    echo "Successful";
    }
    
    else {
    echo "ERROR";
    }
    
    

     

     

  2. if(isset($_POST['action']) && $_POST['action'] == 'submitform')
    {
    //recieve the variables
    
    $roastturkey = $_POST['roastturkey'];
    $broccoli = $_POST['broccoli'];
    $brisket = $_POST['brisket'];
    $carrots = $_POST['carrots'];       
    
    $record_id = (isset($_POST['record_id'])) ? $_POST['record_id'] : '';
    if(!empty($record_id)){
    
    
    
    $testtable = array();foreach($_POST as $indexName => $value) {     $myUpdateList[] = "$indexName = \"$value\"";}
    $fields = implode(",", $testtable);
    $sql=("UPDATE testtable SET $fields WHERE id = $record_id ");
    
    
    $result=mysql_query($sql);				
    
    }
    
    if($result){
    echo "Successful";
    
    }
    
    else {
    echo "ERROR";
    }
    

    EDITed for CODE tags.

  3. well, I'm glad you're here, because I'm doing something wrong.  I posted it as written:

    $testtable = array();foreach($_POST as $indexName => $value) {    $myUpdateList[] = "$indexName = \"$value\"";}

    $fields = implode(",", $testtable);

    $sql=("UPDATE testtable SET $fields WHERE id = $record_id ");

     

    but I was getting a T-string error

  4. Having trouble using the code mentioned.  Is it a syntax error?  Should MyUpdateList be my database name?

    I'm sure it's a minor glitch.  Or maybe I'm better of listing each item, as the shortcut is requiring much more work.. LOL

  5. After submission I want to be able to pull up a customer record and the LAST 4 DIGITS of the social security number that was provided.  What's the best way to do this? 

    Am I best off having them INPUT the digits into three different fields that will load into the DB as Socxxx, Socxx, and Socxxxx, and just calling the Socxxxx field, or is there a way to 'strip' all but the last 4 digits?

  6. Each row contains quantities from a form.

    I then ECHO the form after submission and ECHO the values.

    I would like all values >0 to be BOLD.

     

    while($result=mysql_fetch_array($query)) {$value=result["somerow"];

    if ($value>o) {

    echo "Some field name <input name='data' type='text' id='bold' value='$value' /><br/>";

    }  else{ echo "Some field name <input name='data' type='text' value='$value' /><br/>"; }}

     

    the above codeseems promising, but I'm not sure how to LOOP it so it evaluates ALL the values in their fields, or if there might be a better method.

  7. Code not working

    Getting T-string error:

     

     

    $myUpdateList = array();foreach($_POST as $indexName => $value) {    $myUpdateList[] = "$indexName = \"$value\"";}

    $fields = implode(",", $myUpdateList);

    $sql=UPDATE pass SET $fields WHERE id = 3;

     

    Am I missing parenthesis or semi colons, or quotes?

  8. Yes, the dropdowns were ALL written manually with HTMN (i've since learned there is a php method that's less exhausting).

     

    The id is being input into a field calling it from the DB as record_id.

    $record_id = (isset($_POST['record_id'])) ? $_POST['record_id'] : '';

  9. I appreciate the humor.

    It's just that as a newbie, ya never know if htere's some variable at work that you haven't encountered yet.

    I was thinking they might have a similar numeric value or name concontination or some sort.

    PS: the broccoli is STEAMED.... so at worst it gets soggy.  LOL

  10. Here is the code that was at the top of my INSERT.php code

     

    $roastturkey = $_POST['roastturkey'];

    $broccoli = $_POST['broccoli'];

    $brisket = $_POST['brisket'];

    $carrots = $_POST['carrots'];

     

    and then it repeats as the VALUES to be posted.

     

    I'm still a bit confused about my UPDATE statement.

     

    UPDATe mytable SET (all the post names) WHERE id="id" ...... so the SET is the list of fields, but there's a way to loop through them to avoid listing each one seperately??

     

    Please help.  As I've discovered I could have saved LOTS of time had I understood and implemented other PHP shortcuts earlier in this process.

     

    Thanks.

     

     

  11. SO if I have 50 fields in a single row, I need to list them in the same manner as when I input them from the form?

    There is now way to simply state that I want the entire ID row to be overwritten (since MySQL will automatically NOT overwrite items that were not changed)?

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