是否有任何方法检索php文件的调用页的页名?
例如,如果我有index.php
<?php
session_start();
include 'val.php';
// other stuff
?>
我的val.php看起来是:
<?php
// get file name of caller (index.php in this case)
?>
如果我将echo basename($_SERVER['PHP_SELF']);代码放在index.php中,我可以使用index.php获取页面名,但是我希望这个代码出现在多
我正在使用arte for jquery通过ajax每10秒调用一个页面。它调用我的一个php页面,该php页面查询数据库并返回html代码。在html代码中有一些jquery调用。问题是,除非我在被调用的php文件中包含jquery脚本,否则这些调用不起作用。但这会导致调用php文件的主页上的jquery代码出现问题。基本上,我如何才能让通过ajax从页面返回html中的jquery正常工作?下面是调用php文件的代码:
$(document).ready(function(){
$.arte({'ajax_url':'ajax_list.php'
我想将错误消息重定向到索引页面,所以我编写了以下代码:
$message="Bad answer, go back to page!";
header("location:index.php?message=".$message);
这段代码在进程页面中,我在index.php页面中获取数据,如下所示:
<?php
if(isset($_GET['message'])) {
$message=$_GET['message'];?>
<?php ech
我有一个process.php页面,
<p>This is process page</p>
我有一个index.php页面:
<?php include_once 'process.php' ?>
当我在web中键入process.php或index.php时,两个URL都打印相同的结果:This is process page.
我想要的是
我只想在包含这个process.php页面时访问它,或者只从index.php页面访问它。
当我输入process.php时,它应该重定向到其他地方,或者什么也不打印。
我怎么能这么做
我的网站有点问题。域为bitcointap.xyz.在/register & /login页面上。我遇到了一些PHP错误。在/register页面(bitcointap.xyz/寄存器)上,我得到了错误:
"Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in ../ on line 7"
Register.php:
我遇到的另一个问题是Login.php页面。我得到了错误;
mysqli_fetch_array() expects paramete
我正在编写一个程序,它将在JavaScript和PHP页面上生成随机数,并在JavaScript/Html页面上显示它们。
到目前为止,我已经成功地生成了两个页面的数字,但是我不知道如何从JavaScript页面访问外部PHP页面来检索数字并将其存储到JS变量中。
这是我到目前为止所掌握的。
JavaScript:
function roll()
{
var rollOne; //= Math.floor((Math.random() * 6) + 1);
var rollTwo;
var request = new XMLHttpReq