php (connect.php):-当我通过它自己的 url <" http://sunilcpr.tech/pages/hotel/connect.php ">打开它时,它工作正常
<?php
$link=mysqli_connect("shareddb-t.hosting.stackcp.net","hoteldetail-3133319f3d","sunil7117","hoteldetail-3133319f3d");
if(mysqli_connect_error()){
die ("there is some problem");
}
?>
php (entry.php):-当我通过它自己的 url <" http://sunilcpr.tech/pages/hotel/entry.php ">打开它时,它工作正常
<?php
include('connect.php');
if(array_key_exists("submit", $_POST)){
print_r($_POST);
}
$query="SELECT * FROM entry";
if(mysqli_query($link,$query)){
echo "Welcome to hotel";
}
?>
但是当我想尝试从我的表格发送我的数据时,我发现了一些提到利基市场的错误
用于发送数据的 HTML 文件,在我的文件中,我有两个提交按钮,然后我想要两个按钮的键,以便 php 可以理解这两个数据,现在当我单击提交按钮时,我的页面不会为服务器发送任何数据。
这是我的页面,请查看源代码:<" http://sunilcpr.tech/pages/hotel/entry.html ">
SMILET