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

Android ऐप डेटा को वेबसाइट डेटाबेस से कनेक्ट करें

इस php कोड का परीक्षण करें क्योंकि आपका परिणाम खाली है:

if (isset ($_GET ["name"])){
    $name = mysql_real_escape_string($_GET ["name"]);
    $query = htmlentities ($query);
    mysql_query("SET NAMES 'utf8'");
    $query = mysql_query("SELECT * FROM my_table WHERE name = '$name');
    $result = mysql_query($query);


    $rows = array();

            if (!empty($result)){
                while($r = mysql_fetch_assoc($result)){
                        // $rows[] = $r; has the same effect, without the superfluous data attribute
                        $r["Column1"] = $r["Column1"];
                        $r["Column2"] = $r["Column2"]; //You can add many columns like the table have
                        $rows[] = $r;                       
                        //$rows[] = array('Deal' => $r);
                    }

                    echo json_encode($rows);

                }

}



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. mySQL अपवाद:किसी भी निर्दिष्ट MySQL होस्ट से कनेक्ट करने में असमर्थ। सी # के माध्यम से

  2. पुराने डेटा को वापस करने के लिए mysql db पढ़ने का क्या कारण हो सकता है?

  3. डुप्लिकेट कुंजी अद्यतन पर SQLAlchemy

  4. होमब्रे, MySQL 8 सपोर्ट

  5. MySQL/SQLite/आदि डेटाबेस के बीच अंतर?