Publications

Journal papers

[insert_php]

$myfile = fopen(“../PublicationsData/JournalPapers.txt”, “r”) or die(“Unable to open file!”);
// Output one line until end-of-file
while(!feof($myfile)) {
$contents = fgets($myfile, 8192);
echo “

  • ” . $contents .”
  • “;
    }
    fclose($myfile);

    [/insert_php]