Jump to content

lin

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://

Profile Information

  • Gender
    Not Telling
  • Location
    Somewhere in the United Kingdom, I think!

lin's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=367699:date=Apr 23 2006, 10:16 AM:name=lin)--][div class=\'quotetop\']QUOTE(lin @ Apr 23 2006, 10:16 AM) [snapback]367699[/snapback][/div][div class=\'quotemain\'][!--quotec--] where does the url go which it redirect to thanks paul [/quote] dont worry i got it now cheers
  2. [!--quoteo(post=367690:date=Apr 23 2006, 09:37 AM:name=redbullmarky)--][div class=\'quotetop\']QUOTE(redbullmarky @ Apr 23 2006, 09:37 AM) [snapback]367690[/snapback][/div][div class=\'quotemain\'][!--quotec--] if you omit the 'index.php'/'index.htm' part, they will just default to that. so in your above example, it is equivalent of: [a href=\"http://www.domain.com/account/login/index.php?continue=redirect_url\" target=\"_blank\"]http://www.domain.com/account/login/?continue=redirect_url[/a] as for redirecting afterwards, the $_GET array and 'header' function is used. [code] $redirect_to = $_GET['continue']; header("Location: $redirect_to"); exit; [/code] cheers Mark [/quote] where does the url go which it redirect to thanks paul
  3. hi all just a question about query strings. I know how to make simple ones but how would i make a querystring like: [a href=\"http://www.domain.com/account/login/?continue=redirect_url\" target=\"_blank\"]http://www.domain.com/account/login/?continue=redirect_url[/a] i am guessing index page is in the /login/ folder which display the login part but on the last bit how does the browser know to redirect to the redirect_url when login is successful. thanks lin
  4. sorry my mistake what i should of wrote was when you have [a href=\"http://www.domain.com/folder/\" target=\"_blank\"]http://www.domain.com/folder/[/a] the index page displays with out showing file index.php. Say i had a url of [a href=\"http://www.domain.com/folder/?continue=skasjasd\" target=\"_blank\"]http://www.domain.com/folder/?continue=skasjasd[/a] is it possible to take the / out between the folder directory and ? so it looks like this [a href=\"http://www.domain.com/folder?continue=skasjasd\" target=\"_blank\"]http://www.domain.com/folder?continue=skasjasd[/a] thanks
  5. hi all how is possible to remove the .php from the url eg before [a href=\"http://www.domain.com/file.php?id=1\" target=\"_blank\"]http://www.domain.com/file.php?id=1[/a] after [a href=\"http://www.domain.com/file?id=1\" target=\"_blank\"]http://www.domain.com/file?id=1[/a] thanks lin
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.