<?php

$numberIWant = 3;

while (($diceRoll = rand(1, 6)) != $numberIWant) {
    echo "You rolled a {$diceRoll}, we need a {$numberIWant}.\n";
}

echo "You rolled a {$numberIWant}!";

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: