Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

मेनू से MYSQL डेटा प्रदर्शित करें

आप अपनी क्वेरी निष्पादित करना भूल गए!

<?php

 require 'defaults.php';
 require 'database.php';


 $property = $_GET['property'] ;
 $bedrooms = $_GET['bedrooms'] ;

 $query = "select FROM properties where property = '$property' & bedrooms = '$bedrooms'";
 $result = mysql_query($query); // <-- You forgot this
 while ($row = mysql_fetch_assoc($result))
 {
    $r[] = $row;
 }

 ?>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. त्रुटि:तालिका xxx के लिए तालिका स्थान मौजूद है। कृपया आयात करने से पहले टेबल स्पेस को त्यागें

  2. डेटाबेस में ckeditor html कोड डालें

  3. Yii2 जहां AND या OR कंडीशन ग्रुपिंग कैसे करें?

  4. इनर जॉइन या मिन के साथ अपडेट करें?

  5. आउटपुट को कैसे दबाएं और जांचें कि कोई कमांड सफल है या नहीं?