HyperTextMarkupLanguageのソース(例)

http://www.htmq.com/html5/

たとえば、

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<meta http-equiv="content-type" content="text/html; charset=shift_jis"/>
	<title>otintin</title>
	<meta name="generator" content="LibreOffice 6.2.8.2 (Windows)"/>
	<meta name="created" content="00:00:00"/>
	<meta name="changed" content="2020-06-26T20:04:17.562000000"/>
	<style type="text/css">
		h4.ctl { font-family: "Arial" }
	</style>
</head>
<body lang="ja-JP" dir="ltr">
<form name="フォーム"><h4 class="cjk"><img src="../../../../Pictures/hihihi.png" name="繧、繝。繝シ繧ク1" align="right" width="1219" height="497" border="0"/>
<input type="button" name="プッシュボタン 2" value="プッシュボタン"  style="width: 0.08cm; height: 0.03cm"></h4>
</form>
</body>
</html>

など。例えば掲示板は



<form method="post">
	<div>
		<label for="view_name">表示名</label>
		<input id="view_name" type="text" name="view_name" value="">
	</div>
	<div>
		<label for="message">ひと言メッセージ</label>
		<textarea id="message" name="message"></textarea>
	</div>
	<input type="submit" name="btn_submit" value="書き込む">
</form>
array(3) {
	["view_name"]=> string(15) "テスト太郎"
	["message"]=> string(52) "POST通信によるデータの受け取りテスト"
	["btn_submit"]=> string(12) "書き込む"
}
if( !empty($_POST['btn_submit']) ) {

}

// データベースに接続
$mysqli = new mysqli( 'localhost', 'root', 'password', 'board');

// 接続エラーの確認
if( $mysqli->connect_errno ) {
	$error_message[] = 'データの読み込みに失敗しました。 エラー番号 '.$mysqli->connect_errno.' : '.$mysqli->connect_error;
} else {

	$sql = "SELECT view_name,message,post_date FROM message ORDER BY post_date DESC";
	$res = $mysqli->query($sql);

   if( $res ) {
		$message_array = $res->fetch_all(MYSQLI_ASSOC);
   }

   $mysqli->close();
}

?>
<!DOCTYPE html>
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* phpMyAdmin sample configuration, you can use it as base for
* manual configuration. For easier setup you can use setup/
*
* All directives are explained in documentation in the doc/ folder
* or at .
*
* @package PhpMyAdmin
*/

-- 省略 --

/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;

などなど。例えば検索サイトは

アクセスすればできます。

ですがhtmlならば検索テキストボックスやデータとってくる奴を使わなければ無理です。

この記事が参加している募集