$filename = "tourdates.txt"; $fd = fopen($filename, "r"); if ($fd) { $contents = fread ($fd, filesize ($filename)); fclose($fd); ?>
echo $contents; ?>
} else { ?>
The tour dates file could not be opened.
} ?>