mdmartiny Posted March 24, 2012 Share Posted March 24, 2012 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 More sharing options...
gizmola Posted March 25, 2012 Share Posted March 25, 2012 str_replace works on strings. When you have an object that includes a string you need to reference the actual string to do the replace: $meta.name = str_replace("_", " ", $meta.name); Link to comment https://forums.phpfreaks.com/topic/259658-removing-characters-from-a-string/#findComment-1330840 Share on other sites More sharing options...
mdmartiny Posted March 25, 2012 Author Share Posted March 25, 2012 Thank You Link to comment https://forums.phpfreaks.com/topic/259658-removing-characters-from-a-string/#findComment-1330841 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.