Php kullanarak json iki mysql tablodan veri almak için nasıl

0 Cevap php
$result=array();
$query = "SELECT * FROM $table";
$result = mysql_query($query, $conn);
while ($table = mysql_fetch_assoc($resouter, MYSQL_ASSOC)){
   $result[]=$table;

This code is used to retrieve data from one table my question is how to retrieve data from two tables in json which are related with foreign key i.e student{st_id,st_name,st_class} book{bk_id, author, ISBN,st_id}

i öğrenci kayıtları ve json formatında bu öğrenci tarafından çıkarılan tüm kitapları almak istiyorsanız. Bu önceden sayesinde nasıl alabilirim

0 Cevap