|
I've had many requests to have Dr. File Finder's Picks made available for use as added-value content on other sites. I feel that by allowing this together we can fill a need for qualified software reviews on the Internet. I've been reviewing software online for nearly twenty years and I feel that reviews play an important role. They benefit both software developers and users. If you'd like to have the Dr. File Finder's Picks on your site, please follow the guidelines below.
Agreement: You agree not to alter these reviews in any manner except for
replacing "field names" with relevant information pertaining to your site. This includes the "conversation" text before and after the reviews, as well as the credits that appear at the bottom. You may either copy the HTML documents to your site or retrieve them from our site on demand. In either case supporting images must be copied to your own site. Permission must be obtained prior to using these reviews, in whole or in part.
If you add the Dr. File Finder™ reviews to your site, please send me an email along with a button graphic no larger than 100 pixels wide. I'll then place your graphic on the front page of my Web sites.
How-To: All the reviews appear on this site based on the week of the year. For example, reviews for the week of October 10th, 2002 are in the file drff02-41.html, because this is the 41st week of 2002. If you use frames on your site you can use them to easily add these reviews to your
site.
VBScript Sample
If you use Active Server Pages you can use the VB Script below to retrieve the reviews from this site to display on your own:
<%
set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.async=false
set xmlHttp = CreateObject("Microsoft.XMLHTTP")
'usedate is a place holder for the week you wish to view
usecentury=02
usedate=41
url="http://www.drff.net/reviews/drff"+cstr(usecentury)+"-"+cstr(usedate)+".html"
'*******set the URL here
if url<>"" then
xmlHttp.open "GET", url, FALSE
'*******now send it from the server
On Error Resume Next
xmlHttp.send(objXML)
str=xmlhttp.responsetext
response.write(str)
end if
%>
Insert this code into your Active Server Page and you'll have instant
reviews!
PHP Code Sample
<?
readfile('http://www.drff.net/reviews/drff02-41.html');
?>
Cold Fusion Example
<cfhttp url="http://www.drff.net/reviews/drff#dateformat(now(),"YY")#-#week(now())#.html" method="GET" path="C:\select\your\server\fullpath\to\save\the\file" file="drff#dateformat(now(),"YY")#-#week(now())#.html" resolveurl="true" useragent="Alexei's Grabber 1.0" throwonerror="yes"></cfhttp>
|