English 中文(简体)
Can url of the page in php
原标题:Get url of the page in php

我正在“电子邮箱:这一页”上工作。 我想将基页的长度作为电子邮件发送,但应该是一个人口窗口。

我使用了HTTP_REFER, 正在Greleases上课,但不在互联网探索者上工作。

我正在拿到目前页的ur,但我想在新的人口窗口网页上 。

除<代码>外,还有其他选择。 HTTP_REFER 。

问题回答

On the page you wish to grab the URL of, you can use $_SERVER[ REQUEST_URI ] to get the requested URI (except the scheme & hostname; in other words, you get the path and query string). Pass this to your other page either using a query string or sessions. The former is preferable, as the latter isn t RESTful. There may be times when it s OK to break REST s rule against server side state, but this probably isn t it.

That happens because the HTTP_REFERER is sent by the client browser, which means that it s value can be totally manipulated or can even be null. This means that this variable isn t very reliable. But if the site is yours, there are other solutions.

您可以寄送KeryStrings的ur或其他身份。 因此,请将URL与联系起来。

了解这一方法只有在你在座标点重新打开波堤时才会奏效。





相关问题
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 ...