WIP: bolsa V 1.0

This commit is contained in:
2026-07-08 15:08:50 +00:00
parent 3a5e8a70e2
commit 39e5ae87ff
10 changed files with 1092 additions and 60 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ $nom = $_POST['nom'];
$ticker = $_POST['ticker'];
try {
$stmt = $db->prepare("UPDATE ordres SET nom = ?, ticker = ? WHERE id = ?");
$stmt = $db->prepare("UPDATE ordreGF SET nom = ?, ticker = ? WHERE id = ?");
$stmt->execute([$nom, $ticker, $id]);
echo json_encode(['success' => true]);