First, an FYI. Of all the examples I saw for Description Parser, all were PHP. My confusion was that I thought that php was somehow required to view the available tags. Thanks for your answer.
Now that I know that what I want can be done, but I don't think I can do it without spending lots of time learning more PHP, would you or someone else like to finish the coding for my needs? I will pay a reasonable fee.
I made a php file scorefinder.php based on the example above, and got an error. Here is what I tried.
<?php
$pathToFile = "http://clubresults.acbl.org/Results/196253/2010/07/"; //define where your .htm files are
$periods = array("M","A","E");
// to stop processing if date isn't passed
if ((!isset($_REQUEST['d'])) || ($_REQUEST['d']=="") || (!isset($_REQUEST['p'])) || ($_REQUEST['p']="") || (!in_array(strtoupper($_REQUEST['p']), $periods))) {
echo "<H1>Invalid parameters.</H1>";
break;
} else {
$dateFromEPC = $_REQUEST['d'];
$dateParts = explode(".", $dateFromEPC);
$myDateFormat = date("ymd", mktime(0,0,0, $dateParts[0], $dateParts[1], $dateParts[2]));
$period = strtoupper($_REQUEST['p']);
include($pathToFile.$myDateFormat.$period.".htm");
}
?>
My event link looked like this:
<a target="_blank" href="http://www.wvbridge.com/calendar/scorefinder.php?d=[date]&p=E">
Score Finder</a>
The actual PHP needed will be another step more complicated because of the year and date in the link to scores. The path to the file really needs to be
$pathToFile = "http://clubresults.acbl.org/Results/196253/ and the php needs to add year/month/date.htm in the format YYYY/MM/YYMMDD(M, E, or A).htm
Here is a working score link for July 13, 2010:
http://clubresults.acbl.org/Results/...07/100713E.HTM
If you need it, I'll provide an ftp account for testing.
If you don't do this, can you make a recommendation?