Is it good for my courier using php and laravel? [closed] - php

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm using php and Laravel.
Is is good to build my courier?
I know this is ridiculous but i wonder.
modern php is much better than before.
but i'm still wonder using php.

Yeah it is still good using php especially laravel.
First, php framework (laravel) using MVC Architecture that easy to use, and many tutorials there.
And then, laravel have a feature called Eloquent ORM for easy interaction with your app database

Related

Web based chat between users in my web app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like my users to able to chat with one another.
I currently use angularjs as the front-end and PHP in the back-end.
any ideas?
You should be looking at different languages for this. Node.js, MongoDB and Redis is a good start.
Also, just expecting people to give you code with such a vague request is not really in line with the spirit of things here. There are plenty of good examples online and a simple Google search would give you results like this https://github.com/joni2back/spachat if you're really keen on using PHP and Angular.

What is the best method to connect to a database in php? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I am relatively new to php and I need to connect to a database using php, as i understand there are several methods of connecting to a database, what is the most current method of doing this?
If you are going to use built-in PHP methods, I would advise using PHP PDO. You can find more information on PDO here. You can also use a separate package to manage connections for you such as Doctrine, though this can get a little more complex in the setup. If you are just getting started in PHP, it may be easier to start off with PDO. I hope this helps!

What are the advantages of a php framework like codeigniter? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
What would be the advantage of using a framework like codeigniter vs raw PHP?
MVC pattern, which I recommend you read about. It provides concern separation and is an industry standard for building web apps.
Less boilerplate code - everything (mostly) you need is already provided by framework classes API
Active Record - a nicer way to query database
etc. Bottom line is - use a framework, unless it's a quick hack, then framework might be an overkill

Which is the best PHP MVC framework? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm new to PHP and this forum, I just would like to know which is the best PHP MVC framework regarding to performance and scalable at the present? I wonder if Yii is the best one.
There is no best MVC framework. Use the one that you are comfortable with. Here are some list of MVC frameworks that you would want to lookat
Yii
CodeIgniter
CakePHP
Symfony2
Zend Framework
Laravel
or here is the entire list of PHP frameworks

Is CodeIgniter a better choice to use compared to Dreamweaver? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am currently using Dreamweaver to run PHP codes.It involves extracting values from the database and most of the time it involves sensitive data. A friend suggested to use CodeIgniter as it has higher levels of security and more layers. What should I do? Should i continue using Dreamweaver or switch to CodeIgniter?
CodeIgniter is a PHP framework. Dreamweaver is an IDE. You can use PHP, HTML , CSS , and ofcourse CodeIgniter library inside Dreamweaver.
Both are different. Dreamweaver is an editor whereas CI is a PHP framework.

Categories