Jump to content

ysu

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ysu's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. check register_globals on the server. It's possible that the script was written withouth consideration of it. In that case you can quickly enable it, or better yet, fix it to work from $_POST and $_GET superglobals instead (the proper way). It's not a good practice to rely on auto globals.
  2. [!--quoteo(post=379314:date=Jun 2 2006, 11:12 PM:name=jlove)--][div class=\'quotetop\']QUOTE(jlove @ Jun 2 2006, 11:12 PM) [snapback]379314[/snapback][/div][div class=\'quotemain\'][!--quotec--] This is a simple question but it puzzles me.. If it pass a variable without the variable name ike this : [code]page.php?hello[/code] How do I catch tat in the PHP code? I've tried $_REQUEST[''] but that doesn't seem to work... [/quote] It's not a variable without name, it's a variable without value. try to echo all $_GET values, or simply var_dump($_GET) to see what I mean
×
×
  • 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.