answersLogoWhite

0


Best Answer

It depends on personal choice. The reason PHP is used so extensively is probably cause it is platform independent, open-source, syntax is simple, it supports language interoperability through xml & json and a lot of frameworks and cms are available that too free of cost.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why do you select the php for doing project?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which new language can you select for your bsc it project?

See if you are doing a bsc it project please select the latest technology as it can help you in scoring good marks. so go for php,ruby on rails,asp.net for your bsc it project.


You are doing post graduation in master of international business what topic should you select for doing project in cargo?

i need a project topic on cargo business


What is a PHP certificate?

PHP certification is received after doing some sort of PHP course, there are many out there to do. You can use them in your CV to help you get a job in PHP.


Can you embed a php file project into a HTML page so the php project is shown between the HTML?

If you want to show the folder in html just use link reference in html. For example: <a href="/path/to/folder">PHP File Project</a> If it is on a server do remember to get real path of folder


What is project management training?

Php Project Training Ahmedabad Gujarat India - It World India


Which is faster JSP or PHP?

Depends on what you are doing, PHP does somethings Faster than JSP and in reverse.


What is exactly stands for php?

In the beginning, it was called PHP/FI for "Personal Home Page / Forms Interpreter". Then when the project got bigger it was renamed into the form "PHP: Hypertext Preprocessor", a recursive acronym.


How can you input an integer value in PHP?

<?php $x =1; ?> PHP changes type for you on the fly. If you need to be sure it's an integer (Because PHP isn't doing a good job changing the type) then cast it thusly: <?php $y = (int)$x ?>


How can you call two functions in PHP after the selected option in a select input has changed?

You cannot call a PHP function after a page has been fully displayed to a client, rendering it impossible to call two functions after the selected option in a select input has changed.


How do you pick a random value from a PHP array?

To pick random results from an array in PHP you will need to use the array_rand() function, you can select the amount of results you wish it too select too. <?php $array = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); $rand_results = array_rand($array, 3); // will select 3 random results from the array and store in a new array ?>


What is the database not found error in PHP with MySQL?

It would mean the database you are trying to select in your PHP script couldn't be found, you will need to check to see if you are using the correct details.


When should globals be used in PHP?

Problem with using global variables in php is that they lose the the assigned value in a different php file. They only keep the global variable value in the php file in which they are declared. Instead of globals try and use $_SESSION or $_COOKIE to keep value intact across different php files in a project