Jump to content
php.lv forumi

include ar mainīgajiem


janka

Recommended Posts

Sveiki,

Kādā veidā ir iespējams iekļaut failā kādu citu failu, kuram tiek norādīti mainīgie lielumi?

 

Mēģināju darīt kā parasti — <?php include("index.php?id=menu"); ?>, taču tā nedarbojas. Kā lai citādi iekļauj index.php?id=menu?

 

Paldies.

Link to comment
Share on other sites

<?php
/* This example assumes that www.example.com is configured to parse .php
* files and not .txt files. Also, 'Works' here means that the variables
* $foo and $bar are available within the included file. */

// Won't work; file.txt wasn't handled by www.example.com as PHP
include 'http://www.example.com/file.txt?foo=1&bar=2';

// Won't work; looks for a file named 'file.php?foo=1&bar=2' on the
// local filesystem.
include 'file.php?foo=1&bar=2';

// Works.
include 'http://www.example.com/file.php?foo=1&bar=2';

$foo = 1;
$bar = 2;
include 'file.txt';  // Works.
include 'file.php';  // Works.
?>      

Edited by werd
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...