Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9226133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:45:23+00:00 2026-06-18T04:45:23+00:00

I write the php $query = SELECT privilege , no, userName FROM $tableName WHERE

  • 0

I write the php

$query = "SELECT privilege , no, userName FROM  $tableName WHERE userName =   

'$inputAccount' and password = '$inputPassword'";

$result = $mysqli->query($query);

if($result){
       while ($row = $result->fetch_assoc()) {
        printf ("%s %s %s\n", $row["privilege"], $row["no"], $row["userName"]);
    }
}

the result is user 2 test

session_start();
$_SESSION["privilege"]=$row["privilege"];
$_SESSION["no"]=$row["no"];
$_SESSION["userName"]=$row["userName"]

echo $_SESSION["privilege"] ;
echo $_SESSION["no"];
echo $_SESSION["userName"];

but the result comes to none things and I have fix it for a long time and cannot find why?

Thx in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T04:45:24+00:00Added an answer on June 18, 2026 at 4:45 am

    Use the below code, the problem was that you are not storing your sql output in variables and accessing the result outside of while loop.

    session_start();
    $query = "SELECT privilege , no, userName FROM  $tableName WHERE userName =   
    
    '$inputAccount' and password = '$inputPassword'";
    
    $result = $mysqli->query($query);
    
    if($result){
           while ($row = $result->fetch_assoc()) {
            //printf ("%s %s %s\n", $row["privilege"], $row["no"], $row["userName"]);
           $pr = $row["privilege"];
           $no = $row["no"];
           $name = $row["userName"];
        }
    }
    
    $_SESSION["privilege"]=$pr;
    $_SESSION["no"]=$no;
    $_SESSION["userName"]=$name
    
    echo $_SESSION["privilege"] ;
    echo $_SESSION["no"];
    echo $_SESSION["userName"];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this php query $sql = SELECT * FROM db; $query = mysql_query($sql);
I am running this mysql query: $result = mysql_query(SELECT * FROM userdetails WHERE userid=
I wrote a PHP script that retrieves values from a MySQL Query. I used
How can I write php codes independent from XHTML codes?
I write curl php script which work is download csv file from one website
I want to write a php script to compare rows from the database and
This is my current code: $result = mysql_query(SELECT * FROM characters WHERE namn =
This is my query: SELECT DISTINCT ap.apptype_id FROM tblSubmission AS s JOIN tblApp AS
I write at least a billion PHP while loops a day. Does anybody know
The Query is as follows: SELECT v2.video_id FROM `VideoTags` AS v1 JOIN `VideoTags` AS

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.