2015-12-08 117 views
0

當用戶通過文本框填寫了一些信息時,我在我的服務器上生成一個新頁面時出現了一些問題。 我希望它將信息保存在我的服務器上的html文件中,並從標題框中獲取html的名稱。有什麼辦法可以將整個div複製到一個新的頁面,以便它存儲它?我是這方面的一名完全新手,但希望有人有時間來幫忙。通過輸入信息創建一個新頁面 - 信息

這是我的HTML的外觀:

<div class="form-style-10"> 
<h1>Create a new guide for others to view<span>Be specific and precise when creating your guide</span></h1> 
<form> 
<div class="section"><span>✔</span>Give your guide a name</div> 
<div class="inner-wrap"> 
    <label>Please start with "How do" or "How to" <input type="text" name="title" /></label> 
</div> 
<div class="section"><span>✔</span>Step 1</div> 
<div class="inner-wrap"> 
    <label><input type="text" name="field1" /></label> 
</div> 
<div class="section"><span>✔</span>Step 2</div> 
    <div class="inner-wrap"> 
    <label><input type="text" name="field2" /></label> 
</div> 
<div class="section"><span>✔</span>Step 3</div> 
    <div class="inner-wrap"> 
    <label><input type="text" name="field3" /></label> 
</div> 
<div class="section"><span>✔</span>Step 4</div> 
    <div class="inner-wrap"> 
    <label><input type="text" name="field4" /></label> 
</div> 
<div class="section"><span>✔</span>Step 5</div> 
    <div class="inner-wrap"> 
    <label><input type="text" name="field5" /></label> 
</div> 
<div class="button-section"> 
<input type="submit" name="Sign Up" /> 
<span class="privacy-policy"> 
<input type="checkbox" name="field6">You agree to our Terms and Policy. 
</span> 
</div> 

+0

爲什麼不嘗試使用PHP?當你陷入困境時顯示你的PHP,我們將從那裏幫助你。 –

+0

有太多可能的答案,或者這個格式的答案太長。請添加詳細信息以縮小答案集或隔離可在幾個段落中回答的問題。我建議您找到一個開發論壇(也許[Quora](http://www.quora.com/Computer-Programming) )?)來計算一般性。然後,當/如果您有特定的編碼問題,請回到StackOverflow,我們很樂意提供幫助。 –

回答

0

嘗試製作了使用PHP的形式。這裏是一個偉大的教程:http://www.w3schools.com/php/php_forms.asp,讓使用

$newfile = fopen("example.html", "w")or die("Couldn't open file.");

一個新的文件,並寫入到使用

fwrite($newfile, "Hello world!");

順便問一下吧,不要忘記關閉使用

文件
fclose($newfile); 

希望我幫忙;)