Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abtris/zf-examples-my-quickstart
Zend Framework Example with Add posts and comments
https://github.com/abtris/zf-examples-my-quickstart
Last synced: about 1 month ago
JSON representation
Zend Framework Example with Add posts and comments
- Host: GitHub
- URL: https://github.com/abtris/zf-examples-my-quickstart
- Owner: abtris
- Created: 2010-03-11T11:41:06.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T14:27:03.000Z (12 months ago)
- Last Synced: 2024-04-15T03:04:08.700Z (7 months ago)
- Language: PHP
- Homepage: http://prezi.com/qgl0aiwuqyyo/
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
1. Create structure
`zf create project`
2. Enable layout
`zf enable layout`
3. Create Controllers (index, auth, post)
`zf create controller auth 1`
`zf create action login auth 1`
`zf create action logout auth 1``zf create controller post 1`
`zf create action add post 1`
`zf create action edit post 1`
`zf create action delete post 1``zf create controller comment 1`
`zf create action add comment 1`
`zf create action reply comment 1`
`zf create action edit comment 1`
`zf create action delete comment 1`4. SetUp Database connection (pgsql, mysql)
run sql script docs/createTables.sql
`$ mysql -u root -p