Jump to content

php question


Sanjib Sinha

Recommended Posts

it doesn't actually COMPILE it..

 

what it does is EXECUTE the PHP, then sends whatever PHP says to send, to the client

 

like

 

<?

  echo "hi";

?>

 

php will evaluate the PHP tag <? ... ?>

 

php will then go over the commands it encounters

 

echo "hi";

 

echo "hi"; just basically means "output: hi"

 

so thats the end,

 

then php sends the OUTPUT to the client

 

then the client gets the data, lables it HTML (in most cases, unless specified otherwise) then renders it..

 

it is only run once, and you cannot run it again after php has finished executing for that request

 

 

Link to comment
https://forums.phpfreaks.com/topic/137642-php-question/#findComment-719636
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.