Compare commits

...

2 Commits

36 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,8 @@
As I was not allowed to use any framework, respectively no foreign code, most of the time was spent, well creating some kind of framework myself. :-)
This repo hold a basic programming task I had to do for my new job.
The address book itself was then done in a few hours.
The task was to write a simple address book with plain PHP and Javascript.
No external resources were allowed, so I had to write my own router DBAL and so on.
The result can be found in the Vanilla-Folder.
Now I got the job and will start working on a CakePHP project, so I decided to rewrite the address book in CakePHP.
Work will happen in the CakePHP-Folder.

3
Vanilla/README.md Normal file
View File

@ -0,0 +1,3 @@
As I was not allowed to use any framework, respectively no foreign code, most of the time was spent, well creating some kind of framework myself. :-)
The address book itself was then done in a few hours.

7
Vanilla/config.json Normal file
View File

@ -0,0 +1,7 @@
{
"dbHost": "localhost",
"dbPort": 3306,
"dbDatabase": "tracer_addressbook",
"dbUser": "tracer_addressbook",
"dbPassword": "SKTh_6#YM?%q"
}