mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-09 20:44:11 +01:00
41 lines
741 B
PHP
41 lines
741 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>a</title>
|
|
</head>
|
|
<body>
|
|
<?PHP
|
|
echo"Tu "."funkcja "."echo";
|
|
?><br>
|
|
<?PHP
|
|
echo"Tu ","funkcja ","echo";
|
|
?><br>
|
|
<?PHP
|
|
$tfe = "Tu funkcja echo";
|
|
echo $tfe;
|
|
?><br>
|
|
<?PHP
|
|
echo($tfe);
|
|
?><br>
|
|
<?PHP
|
|
print "Zgłasza się funkcja print";
|
|
?><br>
|
|
<?PHP
|
|
print "Zgłasza "."się "."funkcja "."print";
|
|
?><br>
|
|
<?= "Pan Jezus"?><br>
|
|
<?= "Pan Papież"?><br>
|
|
<?PHP
|
|
//Pan papież lubił Pan Jezus
|
|
#Pan Jezus lubił Pan papież
|
|
/*
|
|
echo "bardzo lubie kremówki";
|
|
*/
|
|
?>
|
|
|
|
</body>
|
|
</html>
|