I a VIEW
veritabanı smarty
in oluşturma. Ben bu görünümü oluşturmak gereken yere biraz karıştı.
I have created a view in a class's constructor function. Now I have the problem that I'm using a function of that class through an object of that class... So is it true that each time I call the function, that view is constructed?
Örnek:
cityview.php:
class city
{
function city(){ "mysql query of creating view "}
function allcity()
{ here is some query on view }
function callcity()
{ here is some query on view }
}
index.php
dediğim In:
$objcity=new city();
$objcity->allcity();
$objcity->callcity();
VIEW
Ben o sınıfın işlevini çağırmak her zaman oluşturulur mi?
Eğer evet ise o zaman nasıl oluştururum ki view
?