$messages = [
"Someone just uploaded a new video!",
"A user started a live stream.",
"New profile created.",
"A photo was posted to the timeline.",
"A new group was created!",
"Members are chatting right now…",
"New stories are trending today.",
];
shuffle($messages);
?>
⚡ Live Community Activity
// Fake chat usernames
$names = [
"Jessica", "Mike92", "OceanGuy", "LunaStar", "DarkWolf",
"Sarah_M", "TechMaster", "EmilyR", "AlphaOne", "Ghost23",
"Nina", "Carlos", "Skyline", "MangoTree", "Nova"
];
// Fake chat messages
$messages = [
"Hey, what’s up everyone?",
"Anyone going live tonight?",
"Check out my new video!",
"This site is getting better every day.",
"Who wants to play a game?",
"Lol that made my day ?",
"I’m new here, what’s good?",
"Just uploaded a new picture!",
"Streaming in 5 minutes, join me!",
"This community is awesome!",
"Can someone help me with my profile?",
"Wow, I love the new updates!",
"Just made a new friend here!",
"Who's online right now?",
"Good morning everyone ☀️"
];
// Generate random chat lines
function randomChatLine($names, $messages) {
$name = $names[array_rand($names)];
$msg = $messages[array_rand($messages)];
$time = rand(1, 59) . " min ago";
return "
$name: $msg
$time
";
}
?>
? Live Chat Activity
// Display 8 random chat messages
for ($i = 0; $i < 8; $i++) {
echo randomChatLine($names, $messages);
}
?>
// Fake chat usernames
$names = [
"Jessica", "Mike92", "OceanGuy", "LunaStar", "DarkWolf",
"Sarah_M", "TechMaster", "EmilyR", "AlphaOne", "Ghost23",
"Nina", "Carlos", "Skyline", "MangoTree", "Nova"
];
// Fake chat messages
$messages = [
"Hey, what’s up everyone?",
"Anyone going live tonight?",
"Check out my new video!",
"This site is getting better every day.",
"Who wants to play a game?",
"Lol that made my day ?",
"I’m new here, what’s good?",
"Just uploaded a new picture!",
"Streaming in 5 minutes, join me!",
"This community is awesome!",
"Can someone help me with my profile?",
"Wow, I love the new updates!",
"Just made a new friend here!",
"Who's online right now?",
"Good morning everyone ☀️"
];
// Generate random chat lines
function randomChatLine($names, $messages) {
$name = $names[array_rand($names)];
$msg = $messages[array_rand($messages)];
$time = rand(1, 59) . " min ago";
return "
$name: $msg
$time
";
}
?>
? Live Chat Activity
// Display 8 random chat messages
for ($i = 0; $i < 8; $i++) {
echo randomChatLine($names, $messages);
}
?>
// Fake chat usernames
$names = [
"Jessica", "Mike92", "OceanGuy", "LunaStar", "DarkWolf",
"Sarah_M", "TechMaster", "EmilyR", "AlphaOne", "Ghost23",
"Nina", "Carlos", "Skyline", "MangoTree", "Nova"
];
// Fake chat messages
$messages = [
"Hey, what’s up everyone?",
"Anyone going live tonight?",
"Check out my new video!",
"This site is getting better every day.",
"Who wants to play a game?",
"Lol that made my day ?",
"I’m new here, what’s good?",
"Just uploaded a new picture!",
"Streaming in 5 minutes, join me!",
"This community is awesome!",
"Can someone help me with my profile?",
"Wow, I love the new updates!",
"Just made a new friend here!",
"Who's online right now?",
"Good morning everyone ☀️"
];
// Generate random chat lines
function randomChatLine($names, $messages) {
$name = $names[array_rand($names)];
$msg = $messages[array_rand($messages)];
$time = rand(1, 59) . " min ago";
return "
$name: $msg
$time
";
}
?>
? Live Chat Activity
// Display 8 random chat messages
for ($i = 0; $i < 8; $i++) {
echo randomChatLine($names, $messages);
}
?>