Jump to content

removing characters from a string


mdmartiny

Recommended Posts

Hello Everyone,

 

I am working on a project I pull the field names from the database. I am trying to remove the underscore (_) when the field name is displayed. Does anyone know how I would do that?

 

Here is the code that I am working with

$i = 0;
    while ($i < mysql_num_fields($fieldnamesquery_result)) {
        $meta = mysql_fetch_field($fieldnamesquery_result, $i);
        if (!$meta) {
            echo "No information available";
        }

        $meta = str_replace("_", " ", $meta);

        $tablecolumn .= "<p>" . $meta->name . ":<input type='text' name='" . $meta->name . "' id='" . $meta->name . "' /></p>";
        $i++;

Link to comment
https://forums.phpfreaks.com/topic/259658-removing-characters-from-a-string/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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