Ejemplo n.º 1
0
 public function getUserInfoByID($uid)
 {
     require_once $_SERVER['DOCUMENT_ROOT'] . "/sqlconnect.php";
     require_once $_SERVER['DOCUMENT_ROOT'] . "/selectdb.php";
     require_once $_SERVER['DOCUMENT_ROOT'] . "/functions.php";
     $table = $this->tableName;
     //parameters
     //fetch all parameters
     //extractdata($tableName, $userArgument, $userValue, $idvalue){
     $this->name = extractdata($table, "name", $uid, "id");
     $this->username = extractdata($table, "username", $uid, "id");
 }
Ejemplo n.º 2
0
<?php

require $_SERVER['DOCUMENT_ROOT'] . "/header.php";
require $_SERVER['DOCUMENT_ROOT'] . "/sqlconnect.php";
require $_SERVER['DOCUMENT_ROOT'] . "/selectdb.php";
require "bar.php";
//assign variable from given
$bookid = mysql_real_escape_string($_GET['id']);
//echo $bookid;
//make id from db be book id (from link)
$userValue = $bookid;
$idvalue = "id";
$tableName = "books";
//call function (listed below)
extractdata($tableName, $userValue, $idvalue);
//---------------------
//function to print list of things requested from database
function extractdata($tableName, $userValue, $idvalue)
{
    //example: $searchQuery = "SELECT username FROM logindatabase WHERE username='******'";
    $searchQuery = "SELECT * FROM {$tableName} WHERE {$idvalue}='{$userValue}'";
    $booleanVariable = mysql_query($searchQuery);
    while ($rows = mysql_fetch_assoc($booleanVariable)) {
        //if finds something, print it out. Stop loop
        echo "<center>Title: " . $rows["title"] . "<br/>";
        echo "Author: " . $rows["author"] . "<br/>";
        echo "ISBN: " . $rows["ISBN"] . "</center><br/><br/>";
    }
}
Ejemplo n.º 3
0
 private function setSellerNameFromSellerID()
 {
     require_once $_SERVER['DOCUMENT_ROOT'] . "/sqlconnect.php";
     require_once $_SERVER['DOCUMENT_ROOT'] . "/selectdb.php";
     $bookid = $this->BBID;
     $tableName = $this->tableName;
     $this->sellerid = $selleridVal = extractdata($tableName, "sellerid", $bookid, "id");
     $this->sellername = extractdata("login", "username", $selleridVal, "id");
 }