Ok, this is gona sound odd... But please stay with me. This is mostly for AD and Phade.
On my site i have a peice of php that searches for my videos on a server. I have the name of the file in a database and if the code finds the video, it says "Available for Local Download".
Code: Select all
if (@fclose(@fopen("$link$myrow[9]", "r")))
{
printf("<td class='avail' colspan='' valign='bottom'>Available for Local Download</td></tr>");
}else{
printf("<td class='avail' colspan='' valign='bottom'> </td></tr>");
}
Recently i've wanted to add a link to the org pages for my videos also because i can't host all of them and it would be cool if i could just point people to the video pages on the org. So becuase i'm lazy and don't want to add a link or identifying number to each of my videos into the databse, is there a way i can have some code do the work for me and tell me if there is a local link for the video on the org?
Probably not possible (i think o.o), but it doesn't hurt to ask
Pwolf