if [„sendRequest“] == „savetodb“) {
//-Zugang der Wert der dynamischen Textfeldvariable gesendet vom Blitz
$Full_Name = $_POST [„Full_Name“];
$SharesPur = $_POST [„purchase_shares“];
include_once „connect_to_mysql.php“;
$sql = mysql_query („* vom stock_index VORWÄHLEN IN DEM Full_Name='$ Full_Name'");
während ($row = mysql_fetch_array ($sql)) {
$Industry = $row [„Industrie“];
$Symbol = $row [„Symbol“];
$Movement = $row [„Bewegung“];
$Shares = $row [„Anteile“];
$Share_Volume = $row [„Share_Volume“];
$Starting_Value = $row [„Starting_Value“];
Current_Value = $row [„Current_Value“];
$Total_Cost = Current_Value * $Shares;
$sql1 = mysql_query („* vom userreg VORWÄHLEN IN DEM id='$ id'");
während ($row = mysql_fetch_array ($sql1)) {
$id = $row [„Identifikation“];
$username = $row [„username“];
$networth = $row [„networth“];
$calculate_balance = $networth-$Total_Cost;
$remaining_balance = number_format ($calculate_balance);
wenn ($networth < $Total_Cost) {
Druck „errorMsg=success_no“;
} sonst {
$query = „UPDATE userreg GESETZTES networth = „$calculate_balance“ WO id='$ id'";
mysql_query ($query);
$sql2 = mysql_query („EINSATZ IN Mappe (username, userid, Full_Name, Symbol, Anteile, Bought_At, Starting_Value, Current_Value, Share_Volume, Bewegung, Industrie, open_date)
WERTE („$username“, „$id“, „$Full_Name“, „$Symbol“, „$SharesPur“, „Current_Value“, „$Starting_Value“, „Current_Value“, „$Share_Volume“, „$Movement“, „$Industry“, jetzt ())")
oder sterben (mysql_error ());
}
}
}
}
|