Home > php教程 > php手册 > body text

php获取超连接传递过来参数值方法

PHP中文网
Release: 2016-05-25 16:47:08
Original
1953 people have browsed it

这是一篇php 基础入门教程,告诉你如何从获取超连接传递过来的参数的值,页面与页面之间传值之中最常见的了.

连接1、

连接2、

在php我们可以通过$_REQUEST[]和$_get['']获取,如,

实例代码如下:

<? 
echo $_GET[&#39;id&#39;]; 
结果:$errat[&#39;id&#39;]的值 
或用 
echo $_REQUEST[&#39;id&#39;]; 
结果:$errat[&#39;id&#39;]的值 
?>
Copy after login

在php中页面与页面之间的传值利用get形式获取是主要方法,也算是php入门教程.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!