我試圖創造出產生動詞,名詞等,在同一頁面上的幾個隨機字發生器(創建一個最終情節生成器,但用戶可以選擇隨機生成的建議)隨機數發生器字發生器 - PHP
我已經設法創建它,但是,當我在同一頁面上單擊另一個生成器時(例如,如果我單擊提示一個名詞並生成一個單詞,然後我去單擊建議一個形容詞和形容詞產生,但這個名詞從以前框消失)
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>
<body>
<?php
{
{
$Noun=array("just", "assume", "there", "are", "lots", "of", "nouns", "in", "here");
//echo rand(0, 2);
$myRandom = rand(0, 99);
//echo $Cars[$myRandom];
//if first name is blank/null then put
}
?>
<form action="quote.php">
Noun<br>
<input type="text" name="firstname"
value="<?php if (isset($_GET['Noun'])){echo $Noun[$myRandom];} }?>"><br>
<input type="submit" name ="Noun" value="Suggest">
</form>
<?php
{
{
$Adj=array("just", "assume", "there", "are", "lots", "of", "adjectives", "in", "here");
//echo rand(0, 2);
$Random = rand(0, 99);
//echo $Cars[$myRandom];
//if first name is blank/null then put
}
?>
<form action="quote.php">
Noun<br>
<input type="text" name="firstname"
value="<?php if (isset($_GET['Adjective'])){echo $Adj[$Random];} }?>"><br>
<input type="submit" name ="Adjective" value="Suggest">
</form>
</body>
</html>
您的表單中沒有方法。你打算使用'POST'還是'GET'? – Sablefoste
我不太確定,我真的很陌生,我很抱歉。 基本上我試圖重新創建類似的東西在這個網站上http://www.plot-generator.org.uk/story/ - 建議按鈕 我想也許'POST'因爲我只是想要的代碼在框內出現 - 不提交新表單? –
嘿@Gareth,在我給出答案之前,我只想知道。 quote.php是否會重定向到這個頁面,並帶來一些結果? –