Jump to content

n00b help - pulling two sql tables


bleemster

Recommended Posts

I seem to be having trouble pulling in information from two tables...

 

I can get all the info from the data table and display it in tables but how to i replace the code as shown with xxxxxxxxx with the FULLNAME field from the USER table which is associated with the USERNAME or $_SESSION Username?

 

Thanks in advanced

<?php

error_reporting(E_ALL);
ini_set('display_errors', '1');

session_start();
if(!isset($_SESSION['username'])){
  header("Location:login.php");
}
require('connect.php');

// create query
$query = "SELECT * FROM data WHERE CREATOR='xxxxxxxxx' AND AVAILABILITY > 0 ORDER BY ID DESC";
$query2 = "SELECT * FROM user";
$query3 = "SELECT * FROM data WHERE CREATOR LIKE 'xxxxxxxxxx' AND AVAILABILITY = 0 ORDER BY ID DESC LIMIT 10";

// get results
$result = mysqli_query($connection, $query);
$result2 = mysqli_query($connection, $query2);
$result3 = mysqli_query($connection, $query3);

// Fetch data
$data = mysqli_fetch_all($result, MYSQLI_ASSOC);
$user = mysqli_fetch_all($result2, MYSQLI_ASSOC);
$data2 = mysqli_fetch_all($result3, MYSQLI_ASSOC);

// var_dump($user);
// free result
mysqli_free_result($result);
mysqli_free_result($result2);
mysqli_free_result($result3);

// Close Connection
mysqli_close($connection);
?>

Edited by bleemster
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.