answersLogoWhite

0

PHP is powerful language platform to develop dynamic, functional website. PHP is more preferable for eCommerce Web Development.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Do you need to know my php in order to use wordpress?

To create a template or plugin, you will need knowledge of PHP, CSS and HTML. To use WordPress as a blogging platform, you do not need to know PHP. WordPress is a WYSIWYG so you can style the text in the box and create your posts.


How can I know what PHP version my site is running on?

Set up a PHP file and put the following in it. <?php phpinfo(); ?> Then run it on the server, it will have all the information you will need including what version you are running.


How are PHP and MySQL compatible?

By sending messages to the MySQL server, you can communicate with the database. To submit SQL queries to the database, you use PHP functions. You don't need to know how to communicate with MySQL because PHP takes care of that. You only need to be familiar with SQL queries and PHP functions. To learn more about data science please visit- Learnbay.co


How do you make a Hatching Game like Dragon Cave?

You need to learn Php/html/Java script from what I know


How do you write a php algorithm?

Well if you know php then you can write your own algorithm php syntax is <?php //open php tag $num = 1; $num2 = 2; $total = $num + $num2; echo $total; ?> //close php tag


How do you run php programs?

You need to install PHP either on a pre built apache server such as xampp or download PHP directly from the website.


What are the requirement of the php?

To run PHP scripts you need a working WWW server (for instance Apache or nginx), with installed and compiled PHP sources (in Windows environment you can use binaries, there is no need to compile).


How do you create a text editor in PHP?

Well it got nothing to do with PHP, you going to need JavaScript to do that :)


How do you install PHP scripts?

You need to upload the scripts to web hosting space that support PHP.


Can you open php file in your PC?

Since a PHP file basically is a text file, yes. But beware - opening and running a PHP file are not the same. If you want to run a PHP file, you will need a webserver with PHP module enabled.


Is it require to have knowledge of other technologies to learn the php technology?

You can learn PHP without knowledge of any other languages. However, in order to use certain basic features of PHP, such as database management and form evaluation, you'll need to know the language of the DBMS and a little HTML.


How do you include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>