Some cgi scripts say that they require SSI to work -- an example would be one that displays the number of visitors online at any given time. However if a person wants to incorporate that particular feature into existing pages, then it could be a real problem to have to rename everything with the .shtml extension.
Other scripts however say that they will work with either SSI OR javascript. So my question is:
Can most cgi scripts that say they require SSI be made to work equally well with js if a person follows a format similar to the second one below (adding the "?js" to the end):
SSI format:
javascript:
Or will that technique only work if the flexibility is actually built into the original perl coding itself??
Thanks for any feedback...
Other scripts however say that they will work with either SSI OR javascript. So my question is:
Can most cgi scripts that say they require SSI be made to work equally well with js if a person follows a format similar to the second one below (adding the "?js" to the end):
SSI format:
Code:
<!--#exec cgi ="/cgi-bin/visitors.cgi" -->
javascript:
Code:
<SCRIPT SRC="[URL unfurl="true"]http://your-website.com/cgi-bin/visitors.cgi?js"></SCRIPT>[/URL]
Or will that technique only work if the flexibility is actually built into the original perl coding itself??
Thanks for any feedback...