Best web programming language to implement this project

Best web programming language to implement this project


  • Total voters
    4

De Code

Newbie
Joined
May 14, 2018
Messages
12
Reaction score
0
Hello,

I'm working on a project for school, where i need to develop a website to keep track of the user daily calorie intake. where he could get recommended calorie intake + log his food "kcal value" + keep track of progress "graphs and stuff".

I started doing the project with PHP"login and sign up", getting the recommended and its working perfectly.

but now i'm struggling a bit with php resources can't figure out how am gonna implement the rest of project.

should i stick with PHP/ MySQL, is it going to be enough? or should i try to learn and implement another language.
 
In your case the language is completely irrelevant. For your use case, you could use any language from PHP to Python or even C# - ASP.NET.

But I honestly think you should stick with PHP/MYSQL:

  1. Both are really good for the web (they work perfectly together), you don't have to setup things
  2. You can use XAMPP and get a Dev environment fast (since its a school project security is not important)
  3. Because of 2 you can simply develop faster, deployment is gonna be easy as hell and XAMPP has with mod_php php built in support for php
  4. Because of 3 you don't have to worry about server administration
  5. Documentation exist to the mass for PHP and Mysql
  6. There are multiple libs that you can use to make things easier in php
  7. There is no reason to not use Mysql as your RDBM
  8. You already knew PHP and Mysql, wich is an advantage

From your post your problem is not the language, it is your skill. You have simply reached the point where you don't know what to do next and as a possible soloution you are thinking picking up a new language and starting from zero will help, but trust me it wont.

Try to figure out how to approach the next step, break your problems down into tiny pieces and start implementing them. Later on, put everything together.
 
yes, this problem is not related to any language.
PHP resources is unlimited out there my friend.
what limited is your skills.
if you search on Google something like "how to make calorie calculator with php" sure you will have problems.

try to break down your project into smaller block of problem then search that the solution for that small problem instead of the project as a whole.

i can make that kind of program in JavaScript, php, python, or any language really.
as long as i have the blue print in how i will achieve that program goal, language is not a problem.
 
PHP and MySQL are perfectly fine for a project like this. If you want to do scripting on the client side, you'll need Javascript as well. You can do some nifty stuff with AJAX.

What exactly does "struggling a bit with php resources" mean?
 
In your case the language is completely irrelevant. For your use case, you could use any language from PHP to Python or even C# - ASP.NET.

But I honestly think you should stick with PHP/MYSQL:

  1. Both are really good for the web (they work perfectly together), you don't have to setup things
  2. You can use XAMPP and get a Dev environment fast (since its a school project security is not important)
  3. Because of 2 you can simply develop faster, deployment is gonna be easy as hell and XAMPP has with mod_php php built in support for php
  4. Because of 3 you don't have to worry about server administration
  5. Documentation exist to the mass for PHP and Mysql
  6. There are multiple libs that you can use to make things easier in php
  7. There is no reason to not use Mysql as your RDBM
  8. You already knew PHP and Mysql, wich is an advantage

From your post your problem is not the language, it is your skill. You have simply reached the point where you don't know what to do next and as a possible soloution you are thinking picking up a new language and starting from zero will help, but trust me it wont.

Try to figure out how to approach the next step, break your problems down into tiny pieces and start implementing them. Later on, put everything together.
thank you for your detailed answer, i'll continue using PHP / MySQL. and am using xampp its really amazing software.
 
Agree with the other, there are so many resources for PHP/MySQL web apps, you will find everything you need.
 
php chart is amazing and fun .

you need to collect the info from the user
and start to get stats in a database
and then show in a chart .

this seems real fun

good luck.
 
database school_project

id ((database id number))

userid (( a user number id you enter to caternate all user info to. ))

username

password

email (( get email to confirm via link))

confirmed (( if email link pressed 1 for active, 0 defualt ))

date (( date user joined

eaten_date ( dste user ate ))

number_of_eaten (( number of item user has eaten))

food name

food type

calorie
 
Last edited by a moderator:
I suggest to take a look at NodeJS! It's very simple, and if you use it with a nosql database (like MongoDB) you will simplify your life :D
 
Hello,

I'm working on a project for school, where i need to develop a website to keep track of the user daily calorie intake. where he could get recommended calorie intake + log his food "kcal value" + keep track of progress "graphs and stuff".

I started doing the project with PHP"login and sign up", getting the recommended and its working perfectly.

but now i'm struggling a bit with php resources can't figure out how am gonna implement the rest of project.

should i stick with PHP/ MySQL, is it going to be enough? or should i try to learn and implement another language.

Buddy, I don't think the problem is with the Language you use. It's with the concept and design of the application.
Search on google, how to make a calorie intake application, read through it and see what kind of design they are proposing. And then start searching for php libraries on github that can help you with your project.
 
Buddy, I don't think the problem is with the Language you use. It's with the concept and design of the application.
Search on google, how to make a calorie intake application, read through it and see what kind of design they are proposing. And then start searching for php libraries on github that can help you with your project.

i'll be doing some research about the libraries and github because i never used them before.
 
Back
Top