Re: [PHP] Jump to internal link after $PHP_SELF post

2001-11-16 Thread Rob van Jaarsveld
Hi Chris, Just a small modification and it works!!! Many thanks! Syntax: onclick=\"document.pageform.action='$PHP_SELF#$value'; submit()\" -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

RE: [PHP] Jump to internal link after $PHP_SELF post

2001-11-15 Thread Boget, Chris
> >It depends on where value is coming from. If it's coming from the > >script server side, then you just need to make sure that $value is > >set before the line "\n"; $anchorTag = "FOO"; echo "\n"; $anchorTag = "BAR"; echo "\n"; ?> or something along those lines. You are going to ha

Re: [PHP] Jump to internal link after $PHP_SELF post

2001-11-15 Thread Rob van Jaarsveld
>It depends on where value is coming from. If it's coming from the >script server side, then you just need to make sure that $value is >set before the line "http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list admini

RE: [PHP] Jump to internal link after $PHP_SELF post

2001-11-15 Thread Boget, Chris
> > When is $value assigned a value? Before or after the > > script prints out the ", so $value would be "para1"). After posting > to SELF a jump to para1 must be made. It depends on where value is coming from. If it's coming from the script server side, then you just need to make sure that

Re: [PHP] Jump to internal link after $PHP_SELF post

2001-11-15 Thread Rob van Jaarsveld
Thanks for the quick reaction. > When is $value assigned a value? Before or after the script prints out > the ", so $value would be "para1"). After posting to SELF a jump to para1 must be made. Is this enough? Thanx, Rob. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-

RE: [PHP] Jump to internal link after $PHP_SELF post

2001-11-15 Thread Boget, Chris
> A large page is generated with data from a MySQL database. The various > paragraphs inside this page have variable, internal links, > also extracted from the database. > Example: > Let's assume that $value represents FOO. Ok > Now i want to take the value of this variable to post to $PHP_SEL