answersLogoWhite

0


Best Answer

It is a recursive acronym that stands for PHP: Hypertext Preprocessor.

Other recursive acronyms are:

GNU: GNU is not Unix

WINE: WINE is not an Emulator

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: If PHP means Hypertext PreProcessor why isn't it HPP?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Screen 14inch for laptop HPP?

I need to know how mach is one screen 14inch for laptop HPP. I have bay one years before form AAFFES,now is not work the screen is brocken is not work. you can see anything in that screen thank you regard thaqi afrim


How can you play a game but there is a school wall?

Some people just add an a s to hpp//: or something like that?


How do you design inline function as a member function?

You define the function at the same time you declare it, usually in the header file, sometimes in an .hpp file.


What technological advances have had a profound effect on cooking?

increses shelf life of food product, nano-technology, HPP, biodegradable packaging. hope this helps


How old is milky circus?

Do you mean Maley Cruis? Ya, kidding, do you mean Miley Cyrus? Ya, she'll be 17 Op op Dee ray. Hoo HPP


How do you change high pressure fuel pump on 5.2 Isuzu diesel?

Well I could go into a long drawn out discription on how to do the hpp on an 4hk. Here's a quick overview. set enging to tdc #1 cyl conpression stroke. remove fuel lines and pump.


How much hoursepower does a 1998 crown vic ex police car have?

210hp The 1998 Crown Vic police package has the same engine as the civilian model. The civilian model equipped with the HPP/sport package (which adds dual exhaust) has the same horsepower rating as the "police" package. Base models have 190hp.


What is hppd?

Hallucinogen persisting perception disorder (HPPD) is characterized by a continual presence of visual disturbances that are reminiscent of those generated by the ingestion of halucinogenic substances. Previous use of halucinogens is a necessary, though not sufficient, cause for the disorder. HPPD is distinct from flashbacks by reason of its relative permanence; whereas the latter is transient, the effects of HPPD occur without cesation for a prolonged, if not indefinite, period.


How-to structure in c plus plus?

A structure in C++ is nearly the same as a structure in C. struct abc { int item1; int item2; ... etc... } mystructure; There are several differences. Two examples are... In C++, you get automatic typedef'ing, so that (in this example) you would not have to say struct abc mysecondstructure; - you can just say abc mysecondstructure;. In C++, structures are very similar to classes. In fact, structures are classes, which is why you get automatic typedef'ing.


Hct television codes for the ge universal remote?

Use 0056, same as LG. Worked for me with a 32" LCD HCT TV Use 19 for TV power on/ off with other vendor's programmable remote.


How do you declare a class?

An instance of a class is also known as an object. In the Java language, you use the new operator. Here is an example:Integer x; // Using the wrapper class, Integer. This doesn't create the object yet.x = new Integer(5); // This will create the instance.These commands can be combined into one:Integer x = new Integer(5);


Why we use extension as cpp in c plus plus programs?

Source files use a .cpp file extension, while headers use .hpp. However, this is merely a convention. Most C++ programmers use .h for all headers, even though this convention implies a C-style header rather than a C++ header. Ultimately, the extension is immaterial. If the file can be included in other files, then it is a header, otherwise it is a source file.