How to start on this issue? What features of php should I use? Trying to create something like a blog, it is necessary that the user wrote, and it was saved when the page was updated. Good links welcome.
4 answers
Database, what else. But without PHP knowledge, I do not know what you will do ..
- With php, mysql is familiar, I work with them quite a lot. Interested in what specifically, what section to study, to implement it. For example, regular expressions or something else ... - Svyatoslav
- If you work with him quite a lot, then it is rather strange to see such a question - neoascetic
- All figured out. - Svyatoslav
|
PHP tutorial and of course HTML online help .
Read, learn. From simple to complex.
|
The best solution is WordPress :) Or writing your own content management system. There is a link . It says that this is a course on HTML, but at the end there are lessons on PHP. Training built in the form of email-mailing.
|
In order not to enter into a stupor, here is the html code:
<html> <head> <title>Тест</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> </head> <body> <div class="container"> <div>Это div</div> </div> <button>Добавить еще</button> <script> $(document).ready(function() { $('button').click(function() { $('<div>А это еще div</div>').appendTo('.container'); }); }); </script> </body> </html>
And then google see why it works
- All sorted out all thanks. - Svyatoslav
|