Skip to content

Laravel globally installs 4.1.1 instead of 8.0.1

I am trying to install laravel 8 globally but it is installing version 4.1.1 every time. I use this code: composer global require laravel/installer Then i check version by writing this: laravel -V …

Html table printing from array

I have a csv in such a format. I am trying to build an html table like show below. Sem 1 , Subj 1 , 75 , 100 ; Sem 1 , Subj 2 , 95 , 100 ; Sem 1 , Subj 3 , 88 , 100 ; Sem 2 , Subj 2 , 95 , 100 …

Require Once Failing Relative Path

I have the following file structure in my project: + server + api + product – get.php + database – product.php + model – product.php + service – product.php + utilities …