Is it possible to include echo get into include?
<?php include("/home/data/ECHO-HERE.dat"); ?>
You could concatenate the literal string with a variable or constant:
include "/home/data/" . $variable . ".dat";
Just be sure that if the variable comes from some eternal input, that you've filtered it to avoid malicious values.