top of page

Brahma Brief — Week 6 Recap (Sept. 26, 2025) By Brahma — “Reach the world but touch my communities first”

  • Writer: Brahma Media, LLC
    Brahma Media, LLC
  • Sep 29
  • 1 min read
Player of the Night: 🐎 QB Franklin Richardson Jr. (Sumter) — 233 rushing yds, 5 TDs, 1 passing TD.
Player of the Night: 🐎 QB Franklin Richardson Jr. (Sumter) — 233 rushing yds, 5 TDs, 1 passing TD.

Richardson Jr. explodes for 6 TDs, Camden locks down Dreher, and Blythewood posts their biggest night yet. Friday night in the Midlands and Pee Dee brought fireworks, shutouts, and standout performances across SCHSL football. Here’s your full Brahma Media recap: Sumter 57, Lugoff-Elgin 42

Franklin Richardson Jr. carried the Gamecocks, rushing for 233 yards and 5 TDs, plus a passing score.

  • Lugoff-Elgin fought hard behind QB Z. Williams (321 yds) and WR S. Saadiq (206 yds) but couldn’t keep pace.

Ridge View 46, Westwood 8

Spencer Bobian pounded out 191 yds & 2 TDs as Ridge View’s offense piled up 304 rushing yards.

  • Westwood was stifled, limited to just one score in the region loss.

Camden 43, Dreher 0

Camden’s defense delivered a shutout while the offense dominated the ground game.

  • Dreher couldn’t find the end zone, slipping further in the standings.

Crestwood 27, Lower Richland 14

Crestwood controlled tempo and secured a steady region victory.

  • Lower Richland tried to rally late but fell short.

Blythewood 46, Spring Valley 0

The Bengals posted their best scoring night of 2025, rolling past Spring Valley in a rivalry shutout.

  • Spring Valley’s offense struggled, blanked for the second time this season.

Darlington 43, Lakewood 0 (Forfeit)

Darlington moves to 2–4 with a forfeit win.

  • Lakewood remains winless at 0–6.



Closing: Stay locked in with Brahma Media for previews, recaps, and Player of the Night highlights. 👉 Follow us on Facebook, Instagram, X (Twitter) and subscribe to the Brahma Brief Newsletter.

ree

 
 
 

Comments


Follow Us:
  • White Facebook Icon

©2024 BRAHMA MEDIA LLC. Powered by Gozoek.com

Never miss an update
bottom of page
// Import the necessary Wix modules import wixData from 'wix-data'; import wixUsers from 'wix-users'; $w.onReady(function () { // Check if the current user is an admin wixUsers.currentUser.getRoles() .then((roles) => { const isAdmin = roles.some(role => role.name === "admin"); if (!isAdmin) { $w("#submitButton").disable(); $w("#errorMessage").text = "You do not have permission to add athletes."; } }); // Submit button click event with validation $w("#submitButton").onClick(() => { const name = $w("#nameInput").value; const age = Number($w("#ageInput").value); const sport = $w("#sportInput").value; const statistics = $w("#statisticsInput").value; const achievements = $w("#achievementsInput").value; const mediaCoverageLinks = $w("#mediaCoverageLinksInput").value.split(','); const photos = $w("#photosInput").value; const socialMediaLinks = $w("#socialMediaLinksInput").value.split(','); // Validation check if (!name || !age || !sport || !statistics || !achievements || mediaCoverageLinks.length === 0 || !photos || socialMediaLinks.length === 0) { $w("#errorMessage").text = "Please fill in all required fields."; return; } const newAthlete = { name: name, age: age, sport: sport, statistics: statistics, achievements: achievements, mediaCoverageLinks: mediaCoverageLinks, photos: photos, socialMediaLinks: socialMediaLinks }; wixData.insert("Athletes", newAthlete) .then(() => { $w("#successMessage").text = "Athlete added successfully!"; $w("#errorMessage").text = ""; // Clear error message }) .catch((err) => { console.error(err); $w("#errorMessage").text = "There was an error adding the athlete."; }); }); });