English 中文(简体)
试图利用实验室将职能包括在内是错误的。 php和负责人。 php file?
原标题:What is wrong with this attempt using php to include functions.php and header.php file?
  • 时间:2011-01-16 12:02:24
  •  标签:
  • php

这部法典有什么错误? 页: 1 我试图列入一个头盔文件,但当我测试并试图装上它说不奏效时。

<?php include("http://test.orwallo.com/widget_corp/includes/header.php"); ?>
最佳回答

我可以提一下<代码>HTTP 500的错误。 但你显然使用<代码>include()错。

<include or require_once statement is used toload local php file. 你们不应有列入URLs的理由。 承诺:

<?php
   require_once("./includes/functions.php");
   include("./includes/header.php");
?>

改变道路。

问题回答

i 试图打开这一档案,但似乎不存在。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签