Basically what I am asking is in ecdownloads each download has an ID at the end of the url and I was curious if I could be able to just add the ID of each download instead of the full url to the file to make it add the download link.
say the download url = www.fake.com/downloads.php?do=file&id=117
anyway I could just add this -- downloads.php?do=file&id=117
or even just the number would be cool.
so I could just add this --
Here is the bbcode:
and here is the example:
Reason I need this is a have a forum where I post any new downloads I upload and it would be nice to have this instead of manually doing this each thread -
Thanks in advance
say the download url = www.fake.com/downloads.php?do=file&id=117
anyway I could just add this -- downloads.php?do=file&id=117
or even just the number would be cool.
so I could just add this --
Code:
[download]117[/download]
Here is the bbcode:
Code:
<div>
<div class="pre-spoiler">
<span style="float:left; padding-top: 2px;">Download</span> <input type="button" value="See" style="width:80px;font-size:10px;margin:0px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.value = 'See';}">
</div>
<div>
<div class="spoiler" style="display: none;">{param}</div>
</div>
</div>
and here is the example:
Code:
[download]test[/download]
Reason I need this is a have a forum where I post any new downloads I upload and it would be nice to have this instead of manually doing this each thread -
Code:
[*url=www.fake.com/downloads.php?do=file&id=117 ]Download Here[/url]
Thanks in advance