Since Xenon and NTLDR helped me with the SQL searching problem (
again, thankies much guys. 
) I've been attempting to play with
foreach and
while.
I'm already aware of eregi_replace and str_replace and they work beautifully, however for the life of me I can't seem to get this replacement loop down.
I'd like for
$message and
str_replace (or eregi_replace) with a SQL table called
$cc to filter and output the loop.
The
$cc table contains an auto-incrementing field called
tagid.
The term to be searched for in
$message is
$cc[tags]. It's replacement is
$cc[tagsname].
Again, it's not the eregi or str_replace that's killing me.. this example works:
PHP Code:
$message = eregi_replace("$cc[tags]","$cc[tagsname]",$message);
But the loop for this to keep reading through each $cc[tags] has me tied. The
foreach function I had came out with a big goose egg -- 0, and
while wanted to loop continuously.
Any suggestions?