は、私はこのウェブサイト上のテキストを投稿できるようにしたい私はどのようにしてユーザーをサイトに投稿して保管させることができますか?ここ
を支援し、すでにタグ付けされたので、それは
<html>
<head>
<title>Negulos</title>
<style>
p {
text-align: center;
color: lime;
font-size: 20px;
}
body {
background-color: black;
overflow-x: hidden;
}
input[type=text], select {
boarder: none;
background-color: black;
color: lime;
position: absolute;
right: 550px;
}
div {
border-radius: 5px;
padding: 20px;
}
</style>
</head>
<body>
<p>Welcome to Negulos the current time is</p><p id="t"></p>
<p>Write anything you'd like to get off your chest</p>
<div>
<input type="text" id="user" value="Your text here">
</div>
<p onclick="post" onmouseover="colorOn(this)" onmouseout="colorOff(this)">post</p>
<p id="post"></p>
<script>
function colorOn(x) {
x.style.color = "red";
}
function colorOff(x) {
x.style.color = "lime";
}
</script>
<script>
function post() {
var x = document.getElementById("user").value;
document.getElementById("post").innerHTML = x;
}
</script>
<script>
document.getElementById("t").innerHTML = Date();
</script>
<?php
?>
</body>
</html>
使用アヤックス?!あなたが欲しいものを手に入れられなかったかもしれません。 –
ここでPHPとの関係は何ですか? –
あなたは何を意味しているのですか? –