PDA

View Full Version : Dynamic link with own bbcode...


Wildthinks
01-18-2003, 11:06 AM
Hi there,
it's a little bit difficulty for me, because my rusty english and explain, what i mean...
ok

I have create a new tag, tag enable swf in vb.
Now i will support dynamic links
example (it's proof of concept, later this link get information from a database...)
-----
http://swishzone.net/SZO2003/includes/tom.php
--------

the code of tom.php

<?php
echo "http://rittercity.de/wt/swish/wackeldackel.swf";
?>

The tom.php give only the url to the swf back, but the swf don't show ---

->> What must be the output from tom.php to see the swf in vb?
->> more hacking needed for this?
I have enabled for the img-tag the dynamicly link option.

Link to my try in my board (no registration needed) (http://swishzone.net/vb/showthread.php?postid=93877#post93877)

THX for your help.... :)

Dean C
01-18-2003, 11:44 AM
That code simply echo's a link which is all you have

You need to use basic html code to embed a flash file as you normally would

However this is a hack to add a swf bbcode.

Here it is:

https://vborg.vbsupport.ru/showthread.php?s=&threadid=40047&highlight=flash+code

Regards

- miSt

Wildthinks
01-18-2003, 12:20 PM
that's not the prob.. the work fine on my board.. what i need is information about the php-output...

when you insert a swf like this
[swf]www.yourdomain.com/tom.swf ... swf-bbcode is fine working, but what i need is a link with dynamic.. the php ask the database and the database give a link back... and the swf will be show with this code
www.yourdomain.com/showswf.php?swfid=4

---> thats the question: What must I do, that the dynamic link will be show as swf and not as php...??
Please give me an example.... THX