PHP
include_once „. /connect_to_mysql.php“;
$query = „auserwählte Industrie, AVG (Current_Value) vom stock_index“;
$result = mysql_query ($query) oder sterben (mysql_error ());
//Print heraus resultiert
während ($row = mysql_fetch_array ($result)){
$myFile = „_AVG.txt“;
$date = Datum („M J, Y“);
$fh = fopen ($myFile, „a ") oder sterben („nicht kann geöffnete Akte“);
$stringData2 = „\ n \ n \ n “. $row [„AVG (Current_Value)“]. „“;
fwrite ($fh, $stringData2);
Echo " $stringData2 ";
fclose ($fh);
}
? >
|