###phpで入力要素を表示したいです
xamppを使ってプログラミングの練習中です。phpでradioボタンを表示したいのですが以下のエラーが表示されます。
発生している問題・エラーメッセージ
Parse error: syntax error, unexpected '$html' (T_VARIABLE) in D:\xampp\htdocs\semi\index.php on line 4
該当のソースコード
<?php include_once 'HTML/Page2.php'; $html = ''; $html = $html.'<form method="post" action="answer.php">'; $html = $html.'<input type="radio" name="sample1" value="1"> 経済学 <br>'; $html = $html.'<input type="radio" name="sample1" value="2"> 経営学 <br>'; $html = $html.'<input type="radio" name="sample1" value="3"> 会計学 <br>'; $html = $html.'<input type="submit" value="送信する" name="page">'; $html = $html.'</form>'; $page = new HTML_Page2(); $page->setCharset( 'UTF-8' ); $page->setLang( 'ja' ); $page->setTitle( 'PHPで生成したページ' ); $page->addBodyContent( '<p>ここに文を書く</p>' ); $page->display(); ?>