gpt4 book ai didi

javascript - 如何制作一个自动 php 函数,该函数应检查是否提交了任何类型的数据,如果是,则显示发布的数据

转载 作者:行者123 更新时间:2023-11-30 09:32:57 25 4
gpt4 key购买 nike

我有一个 php 文件托管在 url https://akshayshrivastav.me/index.php

我正在做的是在 mozilla 浏览器上保持这个 url 打开。

我正在做的是从 chrome 浏览器发送一个 post 请求到那个 url 现在发生的是我有下面的代码

<?php
if($_POST)
{
print_r($_POST);
}
else
{
echo "No Request Received! Please Check the Request You Are Trying To Make!";
}
?>

上面的代码将在 chrome 浏览器上运行,因为当表单 f=data 发布到此 url 时,页面将显示发布的内容。

但在 mozilla 浏览器中,我想要的是即使数据是通过 chrome 浏览器提交的,只要对以下 url 发出发布或获取请求并显示发布的值,它也应该在 mozzila 浏览器中动态刷新页面。

请帮助逻辑。

最佳答案

我正在为表使用代码:

CREATE TABLE `items` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`time` int(10) NOT NULL,
PRIMARY KEY (id)
)

我已将所有内容都写在 1 个文件中,但您至少应该将表格分开。简短版本:每 X 秒/分钟从 jQuery 发送 POST 请求并检查返回值。如果我们得到 X 值,我们重新加载页面,否则,继续发送请求。

我对一些行进行了注释,以便更好地理解我为什么这样写。它可能并不完美(我可能遗漏了一些东西)但总的来说它是有效的(经过测试):

<?php
$db = new mysqli('localhost', 'root', 'password', 'test_database');

/* Must connect to database first, otherwise it's no use */
if ($db->connect_errno) {
exit('Connection failed because: '.$db->connect_error);
}

/* Check if we received $_POST from jQuery script */
if (isset($_POST['lastRow'])) {
$query = $db->query('SELECT id FROM items ORDER BY id DESC LIMIT 1');
$result = $query->fetch_array(MYSQLI_ASSOC);

if (is_null($result)) {
$lastRow = 0;
} else {
$lastRow = $result['id'];
}

/* Return 1 if DB was changed, otherwise, return 0 */
if ($_POST['lastRow'] != $lastRow) {
echo 1;
} else {
echo 0;
}

/* We don't need to print entire HTML code */
exit;
}

/* Add new item through $_POST */
if (!empty($_POST['item_name'])) {
$item = $db->real_escape_string($_POST['item_name']);
$query = $db->query('INSERT INTO items (name, time) VALUES("'.$item.'", '.time().')');

if ($query) {
echo 'Item successfully added!<br>';
} else {
echo 'Item was not successfully added because: '.$db->error.'<br>';
}
}
?>

<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<title>Page with items list</title>
</head>
<body>

<?php
$query = $db->query('SELECT id FROM items ORDER BY id DESC LIMIT 1');
$result = $query->fetch_array(MYSQLI_ASSOC);

/* If table is empty, give 0 rows, otherwise, take last ID */
if (is_null($result)) {
$lastRow = 0;
} else {
$lastRow = $result['id'];
}
?>

<!-- FORM AREA -->
<div id="form_div" class="col-lg-2 form-group">
<form action="" method="post">
<label for="item_name">Item name:</label>
<input type="text" id="item_name" name="item_name" class="form-control" placeholder="Enter item name">
<input type="submit" class="btn btn-primary" value="Insert">
</form>
</div>

<!-- ROW PRINTING AREA -->
<div id="table_div" class="col-log-12">
<table class="table">
<tr>
<th>ID</th>
<th>Name</th>
<th>Creation time</th>
</tr>
<?php
$query = $db->query("SELECT * FROM items");

while ($result = $query->fetch_array(MYSQLI_ASSOC)) {
?>
<tr>
<td><?php echo $result['id']; ?></td>
<td><?php echo $result['name']; ?></td>
<td><?php echo date('Y-m-d', $result['time']); ?></td>
</tr>
<?php
}
?>
</table>
</div>

<!-- Launching script when document is loaded -->
<script type="text/javascript">
$(document).on('ready', function(e) {
function checkData() {
/* Sending POST HTTP request */
$.post('consi.php', { lastRow: <?php echo $lastRow; ?> }, function(data) {
if (data == 1) {
/* OK, last row was changed, so just reload the page to see new results */
window.location.href = window.location.href;
}
});
}

/* 1000 -> 1 second */
setInterval(checkData, 5000);
});
</script>

</body>
</html>

关于javascript - 如何制作一个自动 php 函数,该函数应检查是否提交了任何类型的数据,如果是,则显示发布的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45232866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com