Remove Rows From Database ad


Posted on 16th Feb 2014 07:03 pm by admin

Hi All,

I have this:

Code: [Select]<?php
session_start();
include('../common/dbconnect.php');
$stock_id = $_GET['stock_id'];



$query='SELECT * FROM users_stocks WHERE user_id ="' . $_SESSION['user_id'] . '"';
$result = mysql_query($query, $conn) or die(mysql_error($conn));
$row = mysql_fetch_array($result);
extract($row);
$query1="SELECT t_val FROM stocks WHERE stock_id = '$stock_id'";
$result1 = mysql_query($query1, $conn) or die(mysql_error($conn));
$rows = mysql_fetch_array($result1);
extract($rows);
$query2="SELECT quant FROM users_stocks_details WHERE stock_id = '$stock_id' AND user_id ='" . $_SESSION['user_id'] . "'";
$result2 = mysql_query($query2, $conn) or die(mysql_error($conn));
$rows2 = mysql_fetch_array($result2);
extract($rows2);

//the values
$t = $row['total'];
$b = $row['bank'];
$t_val=$rows['t_val'];
$q = $_GET['quantity'];
$quant =$rows2['quant'];


//sums
$newb = $q * $t_val + $b;
$newt = $t + $newb;
$newquant = $quant - $q;

//the interesting bit

if ($q > $quant)
{
echo "You Dont Have Enough Stocks!";


}

else

{
$updatebank = "UPDATE users_stocks SET bank = $newb WHERE user_id ='" . $_SESSION['user_id'] . "'";
$result = mysql_query($updatebank, $conn) or die(mysql_error());
$updatetotal = "UPDATE users_stocks SET total = $newt WHERE user_id ='" . $_SESSION['user_id'] . "'";
$result = mysql_query($updatetotal, $conn) or die(mysql_error());
$updatequant = "UPDATE users_stocks_details SET quant = $newquant WHERE stock_id = '$stock_id' AND user_id ='" .$_SESSION['user_id']."'";
$result = mysql_query($updatequant, $conn) or die(mysql_error());

$showresults = "SELECT * FROM users_stocks, stocks WHERE user_id ='" . $_SESSION['user_id'] . "'";
$results = mysql_query($showresults, $conn) or die(mysql_error($conn));
$rrows = mysql_fetch_array($results);
extract($rrows);

$sc = $rrows['stock_code'];



echo "Thank you! You have succesfully sold $q $sc 's and you bank balance has increased to $$newb, you have $newquant of $sc stocks left

";

}
?>
<a href="../index.php" title="Cancel &amp; close dialog" onclick="Modalbox.hide(); return false;">Close</a><br />






Which basically removes stocks from the database if sold and updates a bank and total value table.
What I want to do is remove the line from the database if all the stocks are sold.

This data is kept in a table called users_stocks_details which has 3 colums, user_id, stock_id & quant. How would I delete the row from php if quant = 0?

Thanks

No comments posted yet

Your Answer:

Login to answer
209 Like 19 Dislike
Previous forums Next forums
Other forums

Can you help please? Php file
I have to write this php file to allow users to register their nicknames on nickserv

For an I

Include ("Absolute Path") of a file?
I'm not sure what I'm doing wrong. I am writing my php code in the same directory of the file that

Probably a simple error...
I'm getting the error -- Parse error: syntax error, unexpected '{' in /home/content/c/s/t/csteffen24

Open link with largest int string first
I have the following links i would like to open either all at once or one-by-one. How would i procee

Combining Two Queries
I have two scripts that each work fine by themselves. One is a search script with a variable that de

DirectoryIterator and Hacked Website
Hi Everyone.

My problem:
Some one has been sneaking in to my website hidden Iframes. I've

SAP Logon Failed
I tried to login to SAP through MMC.

When i click start and give password.

it

Help: calling function
Hi,
Is it possible to call a php function on page close?
If yes, could you explain how and whe

Delete HTML file after loading
I have limited experience with php and its been a year or two since I've last used it. I have a sma

unserialize help, getting errors
hi all ,
I got a form with 6 fields (2 input and 4 select box), when the page loads one block is

Sign up to write
Sign up now if you have flare of writing..
Login   |   Register
Follow Us
Indyaspeak @ Facebook Indyaspeak @ Twitter Indyaspeak @ Pinterest RSS



Play Free Quiz and Win Cash