Jump to content

Walker33

Members
  • Posts

    78
  • Joined

  • Last visited

    Never

Posts posted by Walker33

  1. Yes, every name is always first, space, last, no middle initial, no hyphens.  And yes, CnP'd that, as I dumped what I had, but it was along those same lines.  Finally, first time in a forum, first time posting questions, so very new to asking questions.  Thanks for bearing with me.  Just trying to learn.

  2. I apologize in advance, but I'm very new to PHP.  Dumped code last night when frustrated, but I was along the lines of this:

     

    <?php

     

    $query = mysql_query ("SELECT * FROM Failures");

    $result = mysql_fetch_assoc ($query);

    $parts = explode(" ", $result['Name']);

    SET FirstName = '$parts[0]';

    SET LastName = '$parts[1]';

     

    echo "confused and frustrated";

    }

    ?>

     

    Not even getting the echo output.  And I'm not sure once it's separated how to Insert it into proper new fields, but some of these suggestions are already helping.

  3. I'm trying to clean up a DB and separate full name entries into firstname/lastname fields, and I believe I should use explode, but I can't seem to get it right, no matter what I've tried.

     

    Table is customers, full name field is Name, names are currently inserted

    first, space, last.  New fields I want them in are FirstName, LastName.

     

    Any help on this would be greatly appreciated.  Thanks in advance.

     

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