如果我看到我的个人资料页面,下面的代码会显示我的名字。我想修改它,这样如果我将访问另一个用户的个人资料页面,他的个人资料页面会同时显示姓名和电子邮件。
<?php
if( isset($_GET['email']) === true && empty($_GET['email']) === false ){
$email = $_GET['email'];
if(user_exists($email) === true) {
$user_id = user_id_from_email($email);
$profile_data = user_data($user_id,'name','email');
echo $profile_data['name'];
?>