These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

Want Ads & Trades

 
  • Topic is locked indefinitely.
 

close

Author
Ecto Plasm
Points of Intrigue
#1 - 2014-03-16 18:07:01 UTC  |  Edited by: Ecto Plasm
close
Aimy Maulerant
DDo Squad Gaming
#2 - 2014-03-19 10:32:52 UTC
depending on the complexity of the system you require i could help
Jone Wiess
Science and Trade Institute
Caldari State
#3 - 2014-04-16 22:40:52 UTC
?php

$lastname=$_POST['lastname'];

$mysqli=mysqli_connect("localhost", "root", "" , "myStore") or die(mysql_error());

$sql="select sum(price) as 'total', firstname from mycustomers, myproducts, mypurchases where mycustomers.lastname='$lastname' and mycustomers.customerid=mypurchases.customerid and mypurchases.productid = myproducts.productid";

$recordSet = mysqli_query($mysqli, $sql);
$record = mysqli_fetch_array($recordSet, MYSQLI_ASSOC);

$total = $record['total'];
$firstname = $record['firstname'];

mysqli_free_result($recordSet);
mysqli_close($mysqli);

include("sender.php");
sender("total=$total,firstname=$firstname,lastname=$lastname");

- PHP ^ uses input and searches for total spent in database returns values.
-Pay is negotiable, i also speak javascript, html, and SQL