phpScaffold quickly generates simple CRUD scaffold modules for PHP/MySQL. It
takes a project name and a schema dump from a browser session, and cooks HTML5
pages for editing it’s tables.
It features session based authentication; searching, sorting and paging
facilities in listing page; and the generated forms responds to column types
text
, date
, datetime
, (var)char
and bool (int(1))
.
I’ve started it from the public copy at phpscaffold.com, to be able to use it
in any new simple model I need, without having to tweak by hand automatable
tasks (id est, for no more reinventing wheels!).
- Go to
index.php
, and seed the form with your schema dump. - You can go to
tmp/table_name/
to grab/test the files
(make sure thattmp/
has write permissions for the web server). - Adjust MySQL info and users (by default it’s ‘admin’, ‘pass’) from
inc.config.inc
. - Start using it!
The table must be up and running; phpScaffold doesn’t change anything in the database.
You may add text search criteria adding ‘text’ as third parameter to search_options
(in search page).
- When saving an entry, if has position attribute, it forgets it in the REPLACE?
- Errors on tables without primary key.
- date and datetime fields shouldn’t be surrounded by
<legend>
. - Distinguish between
int
andchar
columns, to tie text/number search options automatically. - Date/date-range search.
- Upload files capability?
- showEmpty option for
build_options()
.
Copyright © 2009 [phpscaffold.com creator]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.