我试图在 PHP 中创建一个类似 random.org 的网站,但是当我转到该页面时,我在第 36 行收到错误($random = rand($first,$last); 我该如何解决?这里是编码!
<form action="numero.php" method="post">
<input type="text" name="first">
<input type="submit" value="last">
</form>
<?php
function random() {
$first = $_POST['first'];
$last = $_POST['last']
$random = rand($first,$last);
}
echo random();
?>