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 6164967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:05:00+00:00 2026-05-23T22:05:00+00:00

How would I construct a query with the following base function $query = mysql_query(SELECT

  • 0

How would I construct a query with the following base function

$query = mysql_query("SELECT * FROM friend_requests WHERE confirmed=1 AND (sender_id='".$user_id."' OR recipient_id='".$user_id."')");

Where $user_id is the current ID held by the session.

  • 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-05-23T22:05:02+00:00Added an answer on May 23, 2026 at 10:05 pm

    Make sure to call session_start() to initiate session handling on the page. And make sure to use mysql_real_escape_string() to protect against SQL injection. Your question is a little unclear in terms of what exactly you want from the session. If your $user_id variable is a value that is stored in the session, you can retrieve it from the $_SESSION superglobal. If $user_id is the actual session id, you can retrieve it using the session_id() function.

    <?php
    session_start();
    // ...
    $user_id = $_SESSION['user_id']; // or $user_id = session_id();
    
    $query = mysql_query("SELECT * FROM friend_requests WHERE confirmed=1 AND "
        . "(sender_id='" . mysql_real_escape_string($user_id) . "' OR "
        . "recipient_id='" . mysql_real_escape_string($user_id) . "')");
    // ...
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to construct a query that displays all the results in a
I would like to construct a query that fetches results that occurred between NOW
I'm using MySQL and I'm trying to construct a query to do the following:
I would like to construct a search query that groups the records by their
Does the following generic function exist anywhere in the .NET 4.0 framework? I would
I have a polygon soup of triangles that I would like to construct a
What would be the quickest way to construct a Python binding to a C
I would like to cross-reference construct a distance chart similar to the one here
How would you call the constructor of the following class in these three situations:
What would be the best way to write a generic copy constructor function for

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.