Skip to content

Instantly share code, notes, and snippets.

@icyflame
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icyflame/44c0282f91d60d0a63dd to your computer and use it in GitHub Desktop.
Save icyflame/44c0282f91d60d0a63dd to your computer and use it in GitHub Desktop.
Features learnt and encountered, which are remotely connected to PHP

Learnt

  • Connecting a server

  • Connecting to a database on a server

  • Accessing and changing and operating the PHPMyAdmin of a server

  • Querying the remote database

  • Retrieving the data returned from the database and then printing it meaningfully.

  • Adding records to the database

  • md5 hashing for storing passwords securely

  • PHP Post (Almost everything uses this!)

  • PHP Session (For remembering things such as login status, username, etc.

  • require and include (should be used to make code more modular and controllable)

  • isset, empty and other such functions for validating data entered in a form

Encountered

  • Blog Frameworks
  • Form validation (before committing to database)

TODO

  • To load another page once the user has logged in
  • A basic work allocation system with only two users and two tables.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment