php
include_once "connect_to_mysql.php";
$sql = mysql_query ("WYBRANY Full_Name, Current_Value OD stock_index");
$Full_Name = $row ["Full_Name"];
Current_Value = $row ["Current_Value"];
// Ustawiać lokalny PHP vars od the POCZTA vars wysyłać od błysk
$todayDate = $_POST ["todayDate"];
$new_path = realpath (". /indices/$Full_Name/");
jeżeli (! file_exists ($new_path)) {
mkdir ($new_path);
}
// Ten sekcja redagować twój plik-dziennik, jeżeli ty potrzebować tekst plik-dziennik właśnie deleatur te linia
$myFile = "indices/$Full_Name/Transaction_History.txt";
$fh = fopen ($myFile, "a ") lub umierać ("móc otwarty kartoteka");
$stringData = "\ n \ n Data: $todayDate \ n Imię: $Full_Name \ n Wartość: Current_Value";
fwrite ($fh, $stringData);
fclose ($fh);
// Końcówka plik-dziennik redagować
? >
|