Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
160 views
in Technique[技术] by (71.8m points)

php - Pass and print a $_GET variable through an included file

I have a php file index.php and its url is index.php?var=item I defined get variable in index.php

in index.php

<?php
    require "included.php";
    $var=$_GET['var'];
?>

I echoed this variable in my included.php like below

in included.php

<?php
    echo $var;
?>

When I launch index.php?var=item, its shows an error that var is not defined in included.php?

How to overcome this? I want to define some variables in index.php from url and do some staff in included file.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

like Joachim Martinsen posted as a comment (I don't know why he hasn't just answered), you have to set the $var before including your file:

<?php
    $var=$_GET['var'];
    require "included.php";
?>

inlcuding in PHP basically just works like concatenating one file out of other files. so your original code would result in:

<?php
    echo $var;
    $var=$_GET['var']; 
?>

which obviously doesn't work because the variable is echoed before it is getting a value assigned.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...