2

私が探しているのは、以下のコードが実行され、アルバムまたは音楽のリンクがクリックされたときに同じページに投稿されることだけです。正しいですか? したがって、クリックされたリンクに応じて URL が変更され、最後に href が追加されます。リンクがクリックされたときに次のように呼び出すにはどうすればよいですか。

<?php echo 'Albums';?>

元のコード:

if(isset($_GET['username']) === true && empty($_GET['username']) === false){
$username       = $_GET['username'];

if(user_exists($username) === true){
$user_id        = user_id_from_username($username);
$profile_data   = user_data($user_id, 'first_name','last_name','email');
?>

    <h1><?php echo $profile_data['first_name']; ?>'s Yor Page</h1>




<div id="navWrapper">


    <ul>
        <li>
            <a href="#"><img src="uploads/profile/blank_profile.gif" width="150" height="150" id="blank_profile"></a>
        </li>

        <nav>
            <ul>
                <li>
                    <a href="?albums">Albums</a>
                </li>
                <li>
                    <a href="?music">Music</a>
                </li>
            </ul>
        </nav>
    </ul>

</div>
<?php
}else{
    echo 'Sorry, that user doesn\'t exist';
}
}else{
header('Location: index.php');
exit();
}

include 'includes/overall/overall_footer.php';
?>

クリックするとリンクが設定され、yorpage.com/lr/username?albums が返されます。このリンクをクリックして url yorpage.com/lr/username?albums に移動したときに、php 関数またはステートメントを呼び出すにはどうすればよいですか?

したがって、単純なエコーは、私が探しているクリックでリターンを得るためのデモンストレーション目的には問題ありません。詳細情報が必要な場合は、必要ないと思います。これをコーディングするように求めているわけではありません。画像やアルバムなどを返すことができます。クリックされたリンクを処理して単純なエコーを返す方法を知りたいだけです。アルバムまたは音楽のリンクがクリックされたとき。ありがとうございました。

4

2 に答える 2

2

私は少し迷っていますが、理解したように、あなたの質問は次のとおりです: URL http://www.example.com/username/albumsに移動したときにアルバムに正しく移動するように、URL に引数を渡すにはどうすればよいですか?

似たようなものの例を次に示します。

    if (isset($_GET['page'])) {
        $pageArgs = explode('/', $_GET['page']);
        if(isset($pageArgs[0])) {
            $username = $pageArgs[0];   
        } else {
            header('Location: index.php');
            exit();     
        }
        $action = (isset($pageArgs[1])) ? $pageArgs[1] : false;
        switch($action)
        {
            case 'albums':
                print 'These are my albums <br/>';
                break;
            case 'music':
                print 'This is my music! <br/>';
                break;

            default:
                print '
                    <nav>
                        <ul>
                            <li><a href="'.$username.'/albums">Albums</a></li>
                            <li><a href="'.$username.'/music">Music</a></li>
                        </ul>
                    </nav>';
                break;
        }
    }

これをあなたのニーズに合わせてください...

注: 引数をユーザー名ではなくページに変更したため、リライト mod ルールを更新する必要があることに注意してください。また、ページの「引数」を区切るために / を使用しました。「?」を使用できます。(確かではないと思います)もしよろしければ...


これは単純なMVCに続く

index.php

// Find which page is requested
$pageIDs = pageSelector();
// namespaced pages. You can change to real namespaces with:
// $mPage = '\\Page\\' . $pageIDs[0];
$mPage = 'Page_' . $pageIDs[0];
array_shift($pageIDs);

// Path to Template file (the static elements common to all pages like
// header, footer, logo, navigation, etc...
$templatePath = 'templates/my_template.html';

if(!empty($pageIDs))
    $pageArgs = $pageIDs;
else
    $pageArgs = false;

//create Page Object, the dynamic content divided by sections
//for instance, content, columnA, columnB   
$page = new $mPage($pageArgs);

$template = new Template($templatePath, $page);

//Here's an example of a section
$template->addSection('subNavigation');

print $template;

// PageSelector Function
function pageSelector()
{
    if (isset($_GET['page'])) {
        $pIDs = explode('/', $_GET['page']);    
    } else {
        $pIDs = array('home');
    }
    $pagePath = 'pages/' . $pIDs[0] . '.php';
    if (file_exists($pagePath)) {
        require_once($pagePath);
        return $pIDs;
    } else {
        $pagePath = 'pages/home.php';
        require_once($pagePath);
        return array('home');
    }
}



//Template Object
class Template
{
    private $path, $page;
    private $sections = array('content');

    public function __construct($tPath, $page)
    {
        $this->path = $tPath;
        $this->page = $page;
    }

    public function addSection($newSectionName)
    {
        $this->sections[] = $newSectionName;
    }

    public function __toString()
    {
        $html = file_get_contents($this->path);
        foreach($this->sections as $section) {
            $html = str_replace('[%%'.$section.'%%]', $this->page->show($section), $html);
        }
        return $html;
    }
}

ファイル pages/home.php

class Page_home
{
    public function __construct($args) {}

    public function show($section)
    {
        switch($section)
        {
            case 'content':
                return 'this is my main page';
            break;

            default:
                return '';
            break;
        }
    }   
}

ファイル pages/user.php

class Page_user
{
    private $subPage;
    public function __construct($args)
    {
        if(isset($args[0])) 
            $this->username = $args[0];
        else {
            $this->username = false;
            return;
        }
        if(isset($args[1]))
            $this->subPage = $args[1];
        else {
            $this->subPage = false;
            return;
        }

    }

    public function show($section)
    {
        if($this->username)
        {
            switch($section)
            {
                case 'content':
                    $otp  = 'My username is ' . $this->username . '<br/>';
                    $otp .= $this->showSubPage();
                    return $otp;
                break;

                case 'subNavigation':
                    return $this->nav();
                break;

                default:
                    return '';
                break;
            }   
        } else {
            return 'username not found!';
        }
    }

    protected function nav()
    {
        return
        '<nav>
            <ul>
                <li><a href="user/'.$this->username.'/albums">Albums</a></li>
                <li><a href="user/'.$this->username.'/music">Music</a></li>
            </ul>
        </nav>';    
    }

    protected function showSubPage()
    {
        switch($this->subPage)
        {
            case 'albums':
                return 'These are my albums <br/>';
                break;
            case 'music':
                return 'This is my music! <br/>';
                break; 
        }
    }
}

テンプレート/my_template.html

<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
    <div id="mainNav">myLink | Go | Here</div>
    <nav id="subNav">[%%subNavigation%%]</nav>
    <div id="content">[%%content%%]</div>
    <footer>my (c) copyright notice</footer>
</body>
</html>
于 2012-07-31T23:16:07.620 に答える
1

私は混乱するかもしれませんが(それはたくさんのテキストだったので)、あなたが探しているのはhtaccessのチュートリアルだと思います...書き換えルールを使用してURLをサイレントに変換します:

http://domain/[username]/album

http://domain.com?script.php?user=[username]&action=album

...またはそのようなもの。ユーザーには最初のURLが表示されますが、スクリプトは配列にアクセスしuserて配列action内にアクセスでき$_GETます...その後、確認するだけです。

if(isset($_GET['action']) && $_GET['action']=='album'){ //do something...

このためのチュートリアルはたくさんありますが、これが私が最初に見つけたチュートリアルです。

于 2012-07-31T23:02:31.930 に答える