मुझे लगता है कि आप उपयोगकर्ताओं की जानकारी प्राप्त करना चाहते हैं जहां उनकी id
user_id
. जैसा ही है
आप ऐसा कुछ कर सकते हैं;
$query = $db->prepare('SELECT * FROM table WHERE id=:id');
//using bindParam helps prevent SQL Injection
$query->bindParam(':id', $_SESSION['user_id']);
$query->execute();
//$results is now an associative array with the result
$result = $query->fetch(PDO::FETCH_ASSOC);
मुझे यकीन नहीं था कि कैसे user_id
सेट किया गया है इसलिए मैंने बस मामले में बाइंडपरम का उपयोग किया है।