i 2 tablolar var
1st table called services
has id_service, name, date. description
2nd table called services_images
has id_img, img_name,id_service
Diyelim ki, bir sorgu ile (eğer mümkünse), 2 diziler dönmek zorunda olduğunu şimdi diyelim
1st array with fields from one specific id from table "services"
2nd array with fields from all the images related to the selected id in "services" from table "services_images"
ya da daha iyisi, 1 de dediğim gibi aynı veri sadece bir dizi, İÇİNDE "images" adlı bir dizi ile bu olan tablodan listelenen tüm görüntüleri "services_images"
Ben bir html sayfasındaki verileri işlemek ve göstermek için bu gerekiyor ve bu tek yoldur.
Ben nasıl PHP bu düzenleyebilirsiniz mysql bunu cant, aklıma tek şey 2 sorgularını
Plus I'm always trying to improve my skills since I used to make single queries for everything, are there cases where making 1 query it's just impossible? Thanks!