Mega Code Archive

 
Categories / Php / Language Basics
 

Embedding multiple PHP scripts in a single document

<html> <head> <title> <?     print "PHP-enabled page";     $variable = "Hello World!"; ?> </title></head> <body> <? print $variable; ?> </body> </html>