如何将php脚本附加到链接以创建一个链接?

时间:2019-03-23 12:20:12

标签: php html

我正在建立一个网站,希望用户能够在注册时输入他们的抽搐名称(我已经在工作),然后在其信息页面中,我希望链接https://www.twitch.tv位于抽搐之前他们注册的名字。这是我的代码:

        <div class="panel panel-default">
            <div class="panel-heading"><?php if (login_check($mysqli) == true) : echo htmlentities($_SESSION['twitch']); endif; ?><i class="fa fa-link fa-1x"></i></div>
            <div class="panel-body"><a href="http://www.twitch.tv/<?php if (login_check($mysqli) == true) : echo htmlentities($_SESSION['twitch']); endif; ?>"</a></div>
        </div>

我在这里遇到PHP错误:

( ! ) Notice: Undefined index: twitch in C:\wamp64\www\EH\userinfo.php on line 138 Call Stack #TimeMemoryFunctionLocation 10.0003427712{main}( )...\userinfo.php:0 "

0 个答案:

没有答案