2014-02-11 220 views
-3

這聽起來像一個愚蠢的問題,但我現在對如何將它裏面的文字框內是我的代碼需要幫助的PHP需要

<!DOCTYPE HTML> 
    <html> 
    <body> 

    <?php 

     print"<input type='text' name='name'echo(rand()' disabled>" 

      ?> 
     </body> 
       </html> 

該代碼的心不是工作是rand()函數的困惑?所以,我怎麼可以讓它工作,請幫助

+1

應該是'打印 「」;' –

+0

打印「」 – Nanis

+0

非常感謝您幫助我 – user3296356

回答

2
<?php 
    echo "<input type='text' name='name' value='" . rand() . "' disabled>"; 
?>