1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
|
" codeBody "
php
include_once „connect_to_mysql.php“;
$sql = mysql_query („UITGEZOCHTE Full_Name, Current_Value VAN stock_index“);
$Full_Name = $row [„Full_Name“];
Current_Value = $row [„Current_Value“];
// Geplaatst lokale PHP vars van POST vars verzonden van flits
$todayDate = $_POST [„todayDate“];
$new_path = realpath („. /indices/$Full_Name/“);
als (! file_exists ($new_path)) {
mkdir ($new_path);
}
// Deze sectie geeft uw logboekdossier uit, als u geen dossier van het tekstlogboek schrapt enkel deze lijnen nodig hebt
$myFile = „indices/$Full_Name/Transaction_History.txt“;
$fh = fopen ($myFile, 'a') of matrijs („kan geen dossier“ openen);
$stringData = „\ n \ n Datum: $todayDate \ n Naam: $Full_Name \ n Waarde: Current_Value“;
fwrite ($fh, $stringData);
fclose ($fh);
// het het logboekdossier van het Eind geeft uit
? >
|