php實現(xiàn)記事本案例
本文實例為大家分享了php實現(xiàn)記事本的具體代碼,供大家參考,具體內(nèi)容如下
記事本案例
要求:1)頁面上有一個文本域(textarea元素),和一個發(fā)表按鈕 2)用戶在文本域中輸入內(nèi)容后,點擊發(fā)表按鈕,會以當天的日期和時間創(chuàng)建一個記事本,并將用戶輸入的內(nèi)容保存到記事本中
效果:
代碼:
<style> textarea{ resize: none; border: 2px solid #000; outline: none; } input{ margin-top: 15px; width: 80px; height: 30px; border: none; outline: none; color: #fff; background-color: orange; }</style><form action='4.php' method='post'> <textarea name='text' id='' cols='30' rows='10'></textarea> <div><input type='submit' name='btn' value='發(fā)表'></div> </form><?php// 方法一$file=$_POST[’text’];$filename = date(’Ymd’,time()).’.txt’;$fh=fopen($filename,’a’); fwrite($fh,$file);fclose($fh);// 方法二// file_put_contents(’1.txt’,$file);?>
拓展知識點:
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關文章:
1. 利用單元測試對PHP代碼進行檢查2. python如何實現(xiàn)word批量轉HTML3. python excel和yaml文件的讀取封裝4. moment轉化時間戳出現(xiàn)Invalid Date的問題及解決5. Java8內(nèi)存模型PermGen Metaspace實例解析6. python3實現(xiàn)往mysql中插入datetime類型的數(shù)據(jù)7. python爬蟲實戰(zhàn)之制作屬于自己的一個IP代理模塊8. python 實現(xiàn)圍棋游戲(純tkinter gui)9. python 基于Appium控制多設備并行執(zhí)行10. Python加載數(shù)據(jù)的5種不同方式(收藏)
