sorry to bring up an old thread, but just a quick note, there is a php function to strip html tags from text. it might be more efficient, and will eliminate the need to hard code the removal of the
strong tag in case the tags change at somepoint.
on the whitepages.com section, you can replace the
with
|
PHP Code:
|
echo strip_tags($name);
|