Skip to content

Sample project for Phalcon Framework tutorial Web Programming Course 2018

Notifications You must be signed in to change notification settings

rogojagad/learn-phalcon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phalcon Project for Tutorial

Before Running:

  • Create cache folder in /app folder
  • Edit config.php in /app/config folder based on your database credential
<?php

use Phalcon\Config;

return new Config([

    'database' => [
        'adapter' => 'Phalcon\Db\Adapter\Pdo\Mysql',
        'host' => 'INSERT YOUR DB HOST HERE',
        'username' => 'INSERT YOUR DB USERNAME HERE',
        'password' => 'INSERT YOUR DB PASSWORD HERE',
        'dbname' => 'INSERT YOUR DB NAME HERE',
    ],
    'url' => [
        'baseUrl' => 'INSERT YOUR APP'S BASE URL HERE'
    ]
]);

About

Sample project for Phalcon Framework tutorial Web Programming Course 2018

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published