PHP回显多个数据库列

时间:2015-03-22 23:55:47

标签: php echo

有人可以告诉我如何回复$profile_data中的名字和姓氏吗?

此时页面显示的内容类似于“John的个人资料”。但是我不确定如何添加last_name以便显示“John Smith的配置文件”。

非常感谢任何帮助!!!

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 Profile</h1>
    <p><?php echo $profile_data['email']; ?></p>

2 个答案:

答案 0 :(得分:0)

只需将此行更改为

即可
    <h1><?php echo($profile_data["first_name"].' '.$profile_data["last_name"]); ?>'s Profile</h1>

答案 1 :(得分:0)

你可以这样做:

<h1><?php echo $profile_data["first_name"] + " " + $profile_data["last_name"]; ?>'s Profile</h1>