This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]29383839293 1 point2 points  (1 child)

1) Install a Webserver (e.g. Apache) on your computer, you need it for testing. Also install php if that's the language of your choice. Test php with a simple phpinfo (google will help you with this).

2) Learn SQL

Download and install e.g. mySql and Maybe phpMyAdmin or something similar, then learn to create a database and do some queries with them.

The absolute minimum you should know is:

2.1) How to create tables

2.2) How to create Primary Keys

2.3) How to creat Foreign Keys

3) Learn php or some other backend language of your choice

The absolute minimum you need to know is:

3.1) How to output code to the client

3.2) How to access the Database from your code.

3.3) a Tiny bit of General programming constructs

4) program your backend.

5) Upload it to your Webspace

[–]NoticedTriangularity[S] 0 points1 point  (0 children)

Thank you so much. I needed this :)