>> somewhere in ululation.php, right? S'far as I know, it should jump
>> right to that part of the page.
>
> I'm trying to use it as a "pointer" in php, not for the normal
> function.
You didn't mention that. So then under normal circumstances, you will
have to do something like:
$somevar = $_GET['p'];
and then have your script jump to the id or anchor. But why make it
difficult? Don't you already have the id/anchor?
--
-bts
-Motorcycles defy gravity; cars just suck
Re: OT: Php hash
am 13.07.2007 17:12:30 von Neredbojias
Well bust mah britches and call me cheeky, on Fri, 13 Jul 2007 10:59:45 GMT
Toby A Inkster scribed:
> Neredbojias wrote:
>
>> The server *has to* receive it somehow, not so?,
>
> It doesn't.
>
>> for how else does it get to the visitor's userAgent?
>
> It doesn't "get to" the visiter's user agent. It starts at the UA
> and never leaves.
Yep, yep, yep. JL (and you) are right. I sees it now and can only say -
that sucks.
> If you really want to communicate the URL fragment to the server,
> you'd have to use AJAX.
-As I'm doing now. That sucks, too. But thanks for the info.
--
Neredbojias
A self-made man who worships his creator
Re: OT: Php hash
am 13.07.2007 17:18:46 von Neredbojias
Well bust mah britches and call me cheeky, on Fri, 13 Jul 2007 13:03:53 GMT
Beauregard T. Shagnasty scribed:
>> I'm trying to use it as a "pointer" in php, not for the normal
>> function.
>
> You didn't mention that. So then under normal circumstances, you will
> have to do something like:
>
>
>
> $somevar = $_GET['p'];
>
> and then have your script jump to the id or anchor. But why make it
> difficult? Don't you already have the id/anchor?
Has to be on the url as it acts as a session variable. I'm using a
javascript speed-determining function the results of which I want
communicated to the server to determine a hi-speed vs. lo-speed connection
throughout. The trouble with using a search string is that it reloads the
page non-transparently.
What I have now is more-or-less working, but a true php session would be an
improvement.
--
Neredbojias
A self-made man who worships his creator
Re: OT: Php hash
am 13.07.2007 17:30:21 von lws4art
Neredbojias wrote:
> Well bust mah britches and call me cheeky, on Fri, 13 Jul 2007 03:38:47
> GMT Jonathan N. Little scribed:
>
>> Neredbojias wrote:
> That is exactly the effect I am experiencing, but....
>
> The server *has to* receive it somehow, not so?, for how else does it get
> to the visitor's userAgent?
>
It doesn't as Toby says. The fragment is stripped off by the UA and is
stored in the UA's memory. The server only receives the
scheme, host, port, [user], [password], path, and [query]
then when the page loads the UA uses the stored fragment to find the
hash on the page if it exists.
You can see this in action by tailing the access_log of a web server.
For example on my site the URL:
http://www.littleworksstudio.com/gallery.php?sr=10&byid=ckcs #BMckcs0223
shows as:
###.###.###.### - - [13/Jul/2007:11:22:04 -0400] "GET
/gallery.php?sr=10&byid=ckcs HTTP/1.1" 200 30228 "-" "Mozilla/5.0
(Windows; U; Windows NT 5.0; en-US; rv:
1.8.1.4) Gecko/20070509 SeaMonkey/1.1.2 Mnenhy/0.7.5.0"
Note the missing fragment "#BMckcs0223"
I came across this a while back when I converted an old JavaScript
navigation management system to PHP which generated the breadcrumb trail.
I did read some discussion on including the fragment in server-side
processing, but who knows if it will ever change.
A workaround is to pass as query string value and convert to a fragment
as BTS suggested.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Re: OT: Php hash
am 14.07.2007 03:20:52 von Neredbojias
Well bust mah britches and call me cheeky, on Fri, 13 Jul 2007 15:30:21
GMT Jonathan N. Little scribed:
> Neredbojias wrote:
>> Well bust mah britches and call me cheeky, on Fri, 13 Jul 2007
>> 03:38:47 GMT Jonathan N. Little scribed:
>>
>>> Neredbojias wrote:
>
>> That is exactly the effect I am experiencing, but....
>>
>> The server *has to* receive it somehow, not so?, for how else does it
>> get to the visitor's userAgent?
>>
> It doesn't as Toby says. The fragment is stripped off by the UA and is
> stored in the UA's memory. The server only receives the
> scheme, host, port, [user], [password], path, and [query]
> then when the page loads the UA uses the stored fragment to find the
> hash on the page if it exists.
Yes, I see that's correct. Somehow I had it in my head that the server
had to send it to the visitor's browser as an _entity_ (I suppose you'd
say.} Not so, of course.
> You can see this in action by tailing the access_log of a web server.
> For example on my site the URL:
>
> http://www.littleworksstudio.com/gallery.php?sr=10&byid=ckcs #BMckcs0223
>
> shows as:
>
> ###.###.###.### - - [13/Jul/2007:11:22:04 -0400] "GET
> /gallery.php?sr=10&byid=ckcs HTTP/1.1" 200 30228 "-" "Mozilla/5.0
> (Windows; U; Windows NT 5.0; en-US; rv:
> 1.8.1.4) Gecko/20070509 SeaMonkey/1.1.2 Mnenhy/0.7.5.0"
>
> Note the missing fragment "#BMckcs0223"
Yep. Very insightful.
> I came across this a while back when I converted an old JavaScript
> navigation management system to PHP which generated the breadcrumb
> trail.
>
> I did read some discussion on including the fragment in server-side
> processing, but who knows if it will ever change.
>
> A workaround is to pass as query string value and convert to a
> fragment as BTS suggested.
Nope, no query strings. _Adding_ one reloads the page in a way I don't
like. What I finally resigned myself to was a current-session, non-
written cookie with my previous old system as backup. The cookie seems
to work perfectly; the backup most of the time. (What goes wrong there
is hard to explain, but it's nothing invalid or errorwise. I "lose" the
hash, that's all.)
Thanks again for all the help.
--
Neredbojias
A self-made man who worships his creator