+ 2
What is the meaning of php?
7 Respostas
+ 6
This code my help you ☺
https://code.sololearn.com/Wukw9beaMo55/?ref=app
https://www.sololearn.com/learn/PHP/1801/
+ 2
Php stands for
PHP Hypertext Pre-processor...
+ 2
PHP is a server side scripting language. PHP stand for Hypertext pre-processor. It is powerful tool for making dynamic and interactive Web pages. It is open source tool. It is especially suited for web development and can be embedded into HTML.
+ 1
if you are looking for the full form, it is Hypertext pre-processor
0
Pls look my code is it good $var1 = 100;
$var2 = 200;
$var3 = 100 + 200;
echo "$var3";
0
Hemant Phuyel remove the quotes it should be
echo $var3;
Unless you are trying to do something else
You may see the difference by doing this
echo gettype("$var3");
echo gettype($var3);
0
hypertext preprocessor