Home  >  Article  >  php教程  >  php获取超连接传递过来参数值方法

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

PHP中文网
PHP中文网Original
2016-05-25 16:47:081955browse

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

连接1、34341118f39fe51cfdbbfc71d5cea936

连接2、34341118f39fe51cfdbbfc71d5cea936

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

实例代码如下:

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

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

Statement:
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