For some reason I have developed two sites for mobile and desktop.
So all the things are different such as php, js, css. But I should use same db and image.
I need code like this.
if(mobile) {
include 'mobile/aa.php';
} else {
include 'desktop/aa.php';
}
same thing will be applied in js and css.
In this case how can I realize it. Please help me.
I found lots of methods such as redirect url, css and js using screen size.
But this way is not good for me.
Please let me know is it possible or not.