ok heres the code ive got
<?php
$Player1 = $_POST["Player1"];
$Player2 = $_POST["Player2"];
$results = $_POST['results'];
$words = array('Strike: Left arm', 'Strike: Right arm', 'Strike: Head', 'Strike: Left shoulder', 'Strike: Right shoulder', 'No hit');
$bbcode = array('[b][COLOR=Red]Strike: Left arm[/color][/b]', '[b][COLOR=Red]Strike: right arm[/color][/b]', '[b][COLOR=Red]Strike: Head[/color][/b]', '[b][COLOR=Red]Strike: Left Shoulder[/color][/b]', '[b][COLOR=Red]Strike: Right Shoulder[/color][/b]', '[COLOR=Green][b]No Hit[/b][/color]');
$bbword = str_replace($words, $bbcode, $results);
$test = preg_replace('/\d{1,3} HP/', '[b]$0[/b]', $results);
if (!isset($_POST['Submit'])) {
?>
i added your code but it didnt work, probs because im a noob at php. SO if you could put it in the right place that be great 😉