(03-21-2017, 12:09 AM)bachitter Wrote: trying to get help but can't find solution to create client area
How are you looking for the solution? Just Googling "how to create a client area"? Because that's not how it works. Client areas are complex web applications and how they work is highly dependent on your chosen technologies as well as the intended features.
A client area, on the basic level, is just a bunch of forms and a database with a login system in front of it. Those individuals components can be learned from guides and tutorials. However, integrating those to a coherent user experience cannot. Which data do you need to store? How will you gather it? How do you determine whether the data is valid? When can a user do what with the data.
All of these things, together commonly referred to as "business logic", are not explained through any tutorial, because they are unique to your application. Which means you need to figure them out yourself. However, you could look at
https://infinityfree.net or
https://profreehost.com/ for inspiration, if you want something like this.
A good start is to pick a web application framework and go through it's basic application tutorial, since it will teach you the most important base components. I personally use and love Laravel, which has great video tutorials available:
https://laracasts.com/series/laravel-from-scratch-2017
But despite all of this inspiration, don't expect to be able to watch a 10 minute video and be ready. With your skill level, it's probably going to take you months of hard work in both learning and building in order to get something usable.