Jump to content

what is php

Go to solution Solved by Tornation,

I don't think this thread really answered anything so far. PHP is a server-side scripting language that can be embedded into html.

e.g.

<?php
$number = rand(1, 10);
?>

<!DOCTYPE html>
<html>
  <head>
  	<title>Test</title>
  </head>
  <body>
    <p><?php echo($number); ?></p>
  </body>
</html>

This document will just display a random number between 1 and 10 when viewed. Unlike if you something like this in a javascript (client-side) the client cannot influence the result. This is a very basic example and there are many other things php can do like getting post data from users and accessing a database.

i have background in html, css , javascript and bootstrap . my friends told me to study php , currently i am studying the if else statement in php, i want to know is what is the difference of the if else in php and JavaScript and what the can php do as a server side programming language. 

Link to comment
https://linustechtips.com/topic/586952-what-is-php/
Share on other sites

Link to post
Share on other sites

I don't think this thread really answered anything so far. PHP is a server-side scripting language that can be embedded into html.

e.g.

<?php
$number = rand(1, 10);
?>

<!DOCTYPE html>
<html>
  <head>
  	<title>Test</title>
  </head>
  <body>
    <p><?php echo($number); ?></p>
  </body>
</html>

This document will just display a random number between 1 and 10 when viewed. Unlike if you something like this in a javascript (client-side) the client cannot influence the result. This is a very basic example and there are many other things php can do like getting post data from users and accessing a database.

~ Luc Luc

Link to comment
https://linustechtips.com/topic/586952-what-is-php/#findComment-7646926
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×