Hi!
I can already make one that makes and image.
<?
$string = "blah<IMAGE>blah</IMAGE>";
$string = eregi_replace("<image>", "<IMAGE SRC=\"", $string);
$string = eregi_replace("</image>", "\">" $string);
print("$string");
?>
and this works but how would i make a tag that looks like this.
<URL=fdjk>hfjsdkl</URL>???( inside the tag would be the url and in between the start and end is what gets displayed)
something like this?
$string = "blah<URL=fsd>blah</URL>";
$string = eregi_replace("<url=[0-9][a-z][A-Z]>", "<A HREF=\"[0-9][a-z][A-Z]\">", $string);
$string = eregi_replace("</URL>", "</A>" $string);
print("$string");