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

सी # (एकता) का उपयोग कर PHP स्क्रिप्ट को कॉल करना

मुझे इसे एक कार्यशील उदाहरण में फिर से लिखने का प्रयास करने दें:

सी#

void Start() {
    StartCoroutine(GetData());
}


IEnumerator GetData() {
    gameObject.guiText.text = "Loading...";
    WWW www = new WWW("http://yoururl.com/yourphp.php?table=shoes"); //GET data is sent via the URL

    while(!www.isDone && string.IsNullOrEmpty(www.error)) {
        gameObject.guiText.text = "Loading... " + www.Progress.ToString("0%"); //Show progress
        yield return null;
    }

    if(string.IsNullOrEmpty(www.error)) gameObject.guiText.text = www.text;
    else Debug.LogWarning(www.error);
}

PHP

<?php

//DB connection goes here

if ($_REQUEST['table'] === "shoes") { //I'm using REQUEST instead of GET, so it will work with both GET and POST
    $query = "SELECT * FROM `shoes` ORDER by `price` ASC LIMIT 10";
} elseif ($_REQUEST['table'] === "sneakers") { 
    $query = "SELECT * FROM `sneakers` ORDER by `price` ASC LIMIT 10";
}

$result = mysql_query($query) or die(mysql_error());

while ($row = mysql_fetch_assoc($result)) {
    echo  $row['shopname'] . "\t" . $row['price'] . "\n"; 
}
?>

आशा है कि यह मदद करेगा!




  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)

  2. एक SQL क्वेरी में दो तालिकाओं से दो स्तंभों को मिलाएं (मर्ज करें)

  3. SQL में तालिकाओं में शामिल होना

  4. php में किसी अन्य वेबसाइट के मूल्य का चयन करते समय मैं ड्रॉपडाउनबॉक्स के मूल्य को कैसे पॉप्युलेट कर सकता हूं?

  5. त्रुटि-प्रयास विधि 'X.set_DbConnection (System.Data.Common.DbConnection)' द्वारा विधि 'Y.get_Settings ()' तक पहुँचने के लिए विफल