2014-03-03 43 views
1

我正在製作我的第一個django網絡應用程序。位置:將用戶信息保存在HTML python中任何地方

http://joebuty.pythonanywhere.com/

CODE:

<!DOCTYPE html> 

<head><style> 
body{ 
    text-align:center; 
    background:url("http://i.imgur.com/qv9As5Y.jpg"); 
    color: black; 
    font-family: Helvetica; 
    background-size: cover; 
    background-position:center center; 
    background-repeat: no-repeat; 
    background-attachment:fixed; 
} 
p{ 
    font-size:24px; 
} 
input { 
    border: 0; 
    padding: 12px; 
    font-size: 18px; 
} 
input[type="submit"] { 
    background:limegreen; 
    color:black; 
} 

</style> 
</head> 
<body> 
<!-- I'm a comment. You won't actually see me on the web page. 
    You should write your header in the line below me! --> 


<img src="http://i.imgur.com/iAX7FpC.png" height="250" width="250"> 

<h1>Joe Buty</h1> 
<h1>Data Science</h1> 


<h2> Hello,</h2> 

<h3><p> Welcome to my webpage. If you are reading this you might be the 
first person to visit my website. So thanks.</p> 
<p> This page is constantly evolving.</p> 


<h2> <p>So if you would like to be in the loop enter your email. Thanks!</p> 

<input type='email' placeholder="Email"> 
<input type='submit'> <!This button needs to do something!> 
</body> 

有我而做的Codecademy網站教程創建頁面演示了一個電子郵件提交按鈕。現在的問題是,我實際上想將用戶信息保存到數據庫,我不知道如何。

我要去工作,並可能解決這個問題,但如果你可以給我任何指導,我將不勝感激!

讓我知道你是否對我的問題有任何疑問。

歡呼

+1

你應該檢查Django的教程:https://docs.djangoproject.com/en/dev/intro/tutorial01/ –

+0

好像你應該做的更多的教程,如果你有*特定的*問題,然後問這個網站。 – MikeSmithDev

+0

@mikesmithDev我曾問過一個具體的問題。如何讓我的按鈕將信息存儲到數據庫中! –

回答

2

通常當你有一個網站,這是一個好主意,保存用戶信息在數據庫中。 有很多方法可以做到這一點;其中最流行的是SQL。 如果您有興趣瞭解更多,看看這個類https://www.udacity.com/course/cs253

+0

謝謝!我會檢查出來,讓我知道如果我得到它的工作 –

相關問題