Generating UBBCODE for pasting links on forums
Posted: Thu May 26, 2005 1:15 am
Hello
I m trying to make Serendipity displaying me a UBB code at the end of image upload process (for copy pasting my uploaded picture link on forums), like this :
What i did is :
And
But i m unable to make the thumbnail name to show or to find his cvars, i looked anything but i m novice in php and i don't want to mess my working Serendipity, i would be gratefull if there was a easy way that someone could higlight me.
Cheer
I m trying to make Serendipity displaying me a UBB code at the end of image upload process (for copy pasting my uploaded picture link on forums), like this :
Code: Select all
[url=myurl/serendipityimage][img]myurl/serendipityimagethumbnail[/img][/url]Code: Select all
// Accept file
if (move_uploaded_file($_FILES['userfile']['name'], $target)) {
printf(FILE_UPLOADED . '<br />', $_FILES['userfile']['name'], $_FILES['userfile']['thumbnail_name'], $target);Code: Select all
@define('FILE_UPLOADED', 'the BBCODE is :[url=http://myurl/%s][img]http://myurl/%s[/img][/url] Pictures successfully uploaded as %s');Cheer