Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am a rookie in Php development, but I am quite determined to get good at programming, especially server-side. Hence, I am opting for a steep learning curve.
I am trying to develop a webapp in Php where users can design items (say a saucer or a table) and choose properties like colour, shape, and then the system has to adapt the display of the image according to the selected properties.
I need help with advice to the general architecture especially with the language best for writing code for the logic. Also, if there can be assistance with codes which I can apply and learn from, I will deeply appreciate it.
I have critically considered client-side versus server-side options for the rendering of the pages, but I am not sure which will be better, although I think I am leaning towards client-side in order to harness the potentials of JavaScript (so the app can take all of the data from user selections and pass them to the server less often. If I were to use Server-side for this, it means the app would have to load for every specification or formatting option which the user selects, and this can be an irritating experience for the User).
But here, I am faced with the challenge of implementation, and integrating it with an MVC framework, preferably Angular JS.

What I have tried:

I have considered Php, but it seems Php is not adapted for such project.
Posted
Updated 28-Nov-18 6:43am

1 solution

I am trying to develop a webapp in Php where users can design items (say a saucer or a table) and choose properties like colour, shape, and then the system has to adapt the display of the image according to the selected properties.

The "customer" side of this is going to be HTML, JavaScript, and some CSS; and how your application stores is could be PHP, ASP.NET, Python or some other server side language. This is relatively easy when it comes to Web Applications

The actual selections are going to on an HTML form, and the requirement of displaying the changes will take some JavaScript to swap images based on the selected items.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900