在任何地方保存HTML python中的用户信息

时间:2014-03-03 02:52:10

标签: python html database django userform

我正在制作我的第一个django网络应用程序。

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 个答案:

答案 0 :(得分:2)

通常,当您拥有一个网站时,最好将用户信息保存在数据库中。 有很多方法可以做到这一点;最流行的是SQL。 如果您有兴趣了解更多信息,请查看此课程https://www.udacity.com/course/cs253