" ; echo " (Initialization file being used: ", basename($_FILES['uploadFile']['name']), ")
" ;
// file name used to save upload found with 'tmp_name' key
$all = file_get_contents($_FILES['uploadFile']['tmp_name']);
// echo $all."
";
// break file contents on new line character
$lines = explode( "\n", $all);
// echo $lines."
";
$nLines = count($lines);
// echo "nlines=".$nlines."
";
$iSig = 10;
// loop over the number of lines in the file
for ($i = 0; $i < $nLines; $i++) {
$thisLine = trim($lines[$i]);
///echo "Read this line:".$thisLine, "
";
$skip = 0;
// if ($thisLine == "2") $skip = 1; // don't understand why this is needed !!!
if (strlen($thisLine) == 1) $skip = 1;
if ($thisLine == "\n") $skip = 1;
if ($thisLine == "") $skip = 1;
if (substr($thisLine,0,2) == "//") $skip = 1;
if (substr($thisLine,0,1) == "#") $skip = 1;
if ($skip == 0) {
// echo "Found a line", "
";
// if line contains an equal sign, treat it as a keyword-value pair
if (strpos($thisLine,'=') !== false) {
// have to parse the command, then execute it (must be easier way)
$pos = strpos($thisLine,'=');
$mycmd = substr($thisLine, 0, $pos);
$val=substr($thisLine, $pos+1, 1000);
// echo $val."
";
// echo " will execute: ".$mycmd."=".$val."
";
$$mycmd=$val; // execute the string (any security concern with this?)
} else {
// since input file was tab-delimited for signal names and y limits , break fields on tabs
$items = explode( "\t", $thisLine);
// create the name of the desired field, e.g., sig10
$var_container='sig'.$iSig;
// use the variable name to set the desired contents
$$var_container=$items[0];
// do the same for Y lower and upper limits, if they were in the file
if (count($items) > 1 ) {
$var_container='p'.$iSig.'_Y1';
// echo $var_container;
$$var_container=$items[1];
}
if (count($items) > 2 ) {
$var_container='p'.$iSig.'_Y2';
$$var_container=$items[2];
}
$iSig = $iSig+1;
}
}
}
}
?>
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
||||
![]() |
![]() |
![]() |
![]() |
![]() |
||||||
![]() |
![]() |
(If this page is not working, you may be able to diagnose problems with the server).
See the Scope Plotting Details page for tips.
(To use this page from outside the pppl.gov domain, you must be
authenticated at the firewall)