我有3个php文件在我的目录(/account):
- index . php
- login。
- signup.php
访问我的localhost文件夹:
http: localhost/账户= =比;打开默认的(index.php文件)
我想访问login.php和sign .php使用:
=> http:localhost/account?login
和
=> http:localhost/account?signup
。
下面是我在index.php 中的代码<?php
if($_GET['login']){
include('login.php')
} else {
// Load homepage of the site
// which in my case http://localhost
}
if($_GET['signup']){
include('signup.php')
} else {
// Load homepage of the site
// which in my case http://localhost
}
请帮助我找到一种方法来获得我的url像那样…
您有登录和注册密钥,但没有值,因此您应该检查isset()
是否存在密钥。
<?php
if(isset($_GET['login'])){
include('login.php')
} else {
// Load homepage of the site
// which in my case http://localhost
}
if(isset($_GET['signup'])){
include('signup.php')
} else {
// Load homepage of the site
// which in my case http://localhost
}
如果您想使用switch
,
switch(true) {
case isset($_GET['login']):
... break;
case isset($_GET['signup']):
... break;
}