Jump to content

can't get rid of the comma


jeff5656

Recommended Posts

I have a variable called $row['full_name'] that is usually like this : Smith, John.

I want to split it into 2 variables for first and last names like this:

$query = "SELECT full_name, id_incr from name_db";
$results = mysql_query ($query);
while ($row = mysql_fetch_array ($results)){
$newlastname = $row['full_name'];
if (preg_match('/^[^,]+(?=,)/', $row['full_name'], $match)) {
    	$newlastname = $match[0];
	echo $newlastname;
}

The $newlastname is: Smith.  So far so good.  But then, But after I do this:

list($newlastname,$newfirstname) = explode(' ',$row['full_name']);
echo $newlastname."<br>";

the $newlastname has a comma at the end:

Smith,

How do I chaneg the explode so that there isn't a comma at the end?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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