変数に値を代入

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>変数を使う</title>
</head>
<body>
<?php
 $product = "鉛筆";

 print ($product);
 print ("を販売しています。<br/>\n");

 $product="消しゴム";
 print ($product.'を販売しています。<br/>');

 $product="筆箱";

 print ("{$product}を販売しています。\n");

?>
</body>
</html>