Jump to content

Search the Community

Showing results for tags 'get method'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 1 result

  1. I have heavily relied upon register_globals in my web projects since years back. So, now when this function is turned off I'm trying the GET method. But I haven't found anywhere how I use this to pass variables through the URL from clicking a link. Here is an example of my code: <? if ($_GET["pageid"]="igbestallning") { include "includes/igbestallning.inc.php"; } elseif ($_GET["pageid"]="dialog") { include "includes/dialog.inc.php"; } elseif ($_GET["pageid"]="forslum") { include "includes/forslum.inc.php"; } else { include "includes/nospam.inc.php"; } ?> In this case I get the page "includes/igbestallning.inc.php" independent of which link I click. If I click the link http://www.gestaltinformation.se/500_dialog.php?pageid=dialog I still get the first alternative. I'm no programmer, so I try to keep things simple as long as I can understand how to make things happen. This problem eludes me, though. I appreciate any suggestions... Regards, Lars
×
×
  • Create New...