Skip to content

Instantly share code, notes, and snippets.

@mchsgngch
Last active February 3, 2017 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mchsgngch/e291db8b67731faae9797a2a330cbf6a to your computer and use it in GitHub Desktop.
Save mchsgngch/e291db8b67731faae9797a2a330cbf6a to your computer and use it in GitHub Desktop.
HTMLの中にPHPコードを埋め込むサンプル
<!-- PHPファイルで書く(HTMLファイルでない) -->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset='utf-8'>
<title>HTMLの中にPHPを埋め込む</title>
</head>
<body>
<h1>
<?php echo "Hello World!"; ?>
</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment