Guest User

Untitled

a guest
Feb 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. function ubbcode($posting) {
  2. $posting=eregi_replace("\[img\]([^\[]+)\[/img\]","<img src=\"\\1\" border=\"0\">",$posting);
  3. $posting=eregi_replace("\[email\]([^\[]+)\[/email\]","<a href=\"mailto:\\1\">\\1</a>",$posting);
  4. $posting=eregi_replace("\[email=([^\[]+)\]([^\[]+)\[/email\]","<a href=\"mailto:\\1\">\\2</a>",$posting);
  5. $posting=eregi_replace("\[url=([^\[]+)\]([^\[]+)\[/url\]","<a href=\"\\1\" target=\"_blank\">\\2</a>",$posting);
  6. $posting=eregi_replace("\[url\]([^\[]+)\[/url\]","<a href=\"\\1\" target=\"_blank\">\\1</a>",$posting);
  7. $posting=eregi_replace("\[b\]","<strong>",$posting);
  8. $posting=eregi_replace("\[/b\]","</strong>",$posting);
  9. $posting=eregi_replace("\[u\]","<u>",$posting);
  10. $posting=eregi_replace("\[/u\]","</u>",$posting);
  11. $posting=eregi_replace("\[i\]","<em>",$posting);
  12. $posting=eregi_replace("\[/i\]","</em>",$posting);
  13.  
  14. return $posting;
  15. }
Add Comment
Please, Sign In to add comment