include 'core/init.php';
include 'includes/overall/header.php';
$post_id = $_GET['post_id'];
$check_like = mysql_query("SELECT liker, liker_username FROM `likes` WHERE `post_id`='$post_id' ");
while($run_check_like = mysql_fetch_assoc($check_like)) {
$post_liker[] = $run_check_like['liker'];
$post_liker_profile[] = $run_check_like['liker_username'];
}
include 'includes/overall/footer.php';
配列 1 は $post_liker です。配列 2 は $post_liker_profile です。
私はsthをエコーしたい。$post[$post_liker][$post_liker_profile]として;