Hello!
Thanks for reading. I am currently modifying some existing code (I am not a php programmer). I have a .php file that is generating download links for user uploaded files. The script creates url addresses for the files with the following variables: http://domain.com/images/clientvideo/<?php echo $profile; ?>/<?php echo urldecode($myfiles[$i]['name']);?>
This helps to keep all the files private to each user. What I want to accomplish is use another php script to call this url and preview the media it links to. I’m using a joomla mambot for this called DenVideo. Basically it crawls the site and where ever it finds this code {denvideo url}
it inserts a flash media player and plays the video. So what I thought I needed to do was the following:
{denvideo http://domain.com/images/clientvideo/<?php echo $profile; ?>/<?php echo urldecode($myfiles[$i]['name']);?>}
This however doesn’t work. If I manually type out the url without the php calls I get closer but things still don’t work correctly. If anyone can help point me in the right direction that would be really great, this has been driving me crazy for a week.