rmaskey / heroku-php-pg

Demo for connecting to PostgreSQL with PHP on Heroku

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostgreSQL + PHP on Heroku

This otherwise entirely useless app demonstrates how to connect to your Heroku PostgreSQL database in a PHP app.

Long story short, read your connection data from DATABASE_URL.

Every time you hard-code the connection info, god kills an octokitten.

Running this app on Heroku:

Clone it, then create your Heroku app with:

$ heroku create --stack=cedar

Push your clone to Heroku:

$ git push heroku master

PHP apps don't get a database by default, so you have to add it manually:

$ heroku addons:add shared-database

Once that's done, you can visit your app with:

$ heroku open

About

Demo for connecting to PostgreSQL with PHP on Heroku