Jump to content

joezyz

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

joezyz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Try using this code at the bottom of the form. It helps to debug the global vars: -Joe <?php //THIS IS USED ONLY TO DEBUG THE GLOBAL VARIABLES // ------------------------------------ print '$_POST array'; // ------------------------------------ print "<BR/>"; // ------------------------------------ foreach ( $_POST as $key => $value ) { print $key . " " . "=" . " " . $value; print "<BR/>"; } // ------------------------------------ print "<BR/>"; // ------------------------------------ print "<BR/>"; // ------------------------------------ print '$_GET array'; // ------------------------------------ print "<BR/>"; // ------------------------------------ foreach ( $_GET as $key => $value ) { print $key . " " . "=" . " " . $value; print "<BR/>"; } // ------------------------------------ print "<BR/>"; // ------------------------------------ print "<BR/>"; // ------------------------------------ print '$_REQUEST array'; // ------------------------------------ print "<BR/>"; // ------------------------------------ foreach ( $_REQUEST as $key => $value ) { print $key . " " . "=" . " " . $value; print "<BR/>"; } // ------------------------------------ print "<BR/>"; // ------------------------------------ print '$_SESSION array'; // ------------------------------------ print "<BR/>"; foreach ( $_SESSION as $key => $value ) { print $key . " " . "=" . " " . $value; print "<BR/>"; } // ------------------------------------ ?>
  2. Hi, I am creating a web page in PHP, and I need to auto fill a form field with the users windows login. Does anyone know how to do this in javascript? I have searched the web, but no luck. Thanks!! -Joe
×
×
  • 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.