Author |
Message |
Topic: Find and remove words? |
SQL Maestro
Replies: 3
Views: 6586
|
|
some better code...
<?php
// The word we want to replace
$oldWord = 'control panel';
// The new word we want in place of the old one
$newWord = '*ontrol *panel';
// The text string
$ol ... |
|