As i mentioned in the previous post.. i choose php and ignored rest of them because i wanted to do a project in php for a long time and i choose to use this as an opportunity.

So i’m going to walk through the thought process.

So i needed to do a application basically (webapp) with user login, registration, with admin privilages, then with adding item, updating the item,  deleting the item, assigning the item, reassign the item etc.. SO with php i have to dynamically generate stuff based on the content and available resources.. with login registration, displaying, ui etc.. with javascript and frameworks like react.. i would know how but this is php so i have no idea about this, except the fact that i have seen sites using page id for page redirection, so from this i know that some content are static and some are dynamic and i have to generate them and append to the page(my javascript strategy taking over the whole idea..). so there is static part and dynamic part.. i have to figure out a way for loading the stuff. The next thing is redirection.. if clicked on a link you swap some contents on the page with some other content and so on…the problem here is with php you can not detect page clicks..atleat as far as i know. this is pretty basic… so you have to go with page id and stuff and get the values from the GET METHOD.. using the url…

You might have noticed this in some of the pages someplaeholder.com/something.php?somevariable=somavelue

So i worked on that quite a while and figured it out and built a custom page and implemented a small version that works well,, Next thing; back to the drawing board for the design of the indivisual pages and planning where the stuff would goll like the actual physical objects where the contents will go. and so forth.. i got some inspiration from git hub search page.. Next is the db connection with php: There are two options that could go here one is with mysqli and other one is PDO, I choose pdo beacuse it was object oriented and it supports a huge range of applications and the fact that its being actually developed.. so its final then.. I’M USING PDO for db connection… checked the docs and found a an example and played with it. design , db connection, dynamic content, everything is setup and done..

Ofcourse im leaving stuff like generating hash for passwords, session management, and a whole ton lot.

Then have to link everything else with javascript..with ajax request and animation to deal with everything else… so im ending this here. See you next time.. bye So the link to the github page here..check the source github.