Added new language versions of Yes or No Generator . :
Tag: generator
Lucky numbers generator
We are proud to present you new member of our “Randomizers” family:
Page is able to generate Your lucky numbers. Which has countless application in real life situations.
Lotto positive will found it certainly usefull.
Page generates maximum 10 iterations of maximum 100 values from interval 0 – 100.
Default setting is 6 / 49, no zeros, no duplicates, 1 iteration.
This can be changed by user.
Yes or No Generator
Simple presentation of php random function – yes-or-no.goodplace.eu
Page is refreshed after click on the Button. Picture YES or NO is loaded according to results of random function.
How its made
Code:
...
<input type="button" value="Yes or No ?" onClick="window.location.reload()">
...
<?php
if (rand(0,1) == 0) {
echo "<img src=\"no.jpg\" alt=\"no\" title=\"no\" border=\"0\" height=\"40\" width=\"80\">";
}
else {
echo "<img src=\"yes.jpg\" alt=\"yes\" title=\"yes\" border=\"0\" height=\"40\" width=\"80\">";
}
?>
Czech version ano-nebo-ne.goodplace.eu
German version ja-oder-nein.goodplace.eu
Spanish version si-o-no.goodplace.eu
French version oui-ou-non.goodplace.eu
Portugal version sim-ou-nao.goodplace.eu
Russian version da-ili-net.goodplace.eu
Slovak version ano-alebo-nie.goodplace.eu