-
Notifications
You must be signed in to change notification settings - Fork 0
/
save-coins.php
27 lines (21 loc) · 952 Bytes
/
save-coins.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
//--------------------------------------------------------------------------
// Example php script for fetching data from mysql database
//--------------------------------------------------------------------------
$host = "localhost";
$user = "root";
$pass = "12345";
$databaseName = "coins";
//--------------------------------------------------------------------------
// 1) Connect to mysql database
//--------------------------------------------------------------------------
include 'DB.php';
$con = mysqli_connect($host, $user, $pass, $databaseName);
mysqli_set_charset($con,"utf8");
//--------------------------------------------------------------------------
// 2) Query database for data
//--------------------------------------------------------------------------
$coinsCount = $_POST["count"];
$id = $_POST["id"];
$result = mysqli_query($con, "UPDATE asset SET number = " . $coinsCount . " WHERE id = " . $id); //query
?>