Skip to main content

New Features of CodeIgniter Wizard PHP RAD Tool

CodeIgniter Wizard is a Rapid Application Development (RAD) tool and a code generator for PHP MySQL which helps quickly generate MySQL/MariaDB database-driven web applications as an advanced starting point with all the C.R.U.D. functionality, with administrative interfaces based on version 4 of the CodeIgniter framework. 


As of version 1.1 of CodeIgniter Wizard, users can select the what data to be referenced before generation of dropdown fields and radio buttons without having to rely solely on foreign keys defined in the database.And Some of the generated application configuration settings are now in the Preferences panel.


Generated form code is now more elegant and less verbose using the new old() function instead of set_value(). For an end-to-end, 9-minute demo, watch https://youtu.be/fo2wmzZ2p3I To take a closer look at what the generated code looks like, see https://youtu.be/6Gh1LU1pV-I APP STORE LINK https://apps.apple.com/app/codeigniter-wizard/id1531951619 PRODUCT WEB SITE https://www.ozar.net/products/codeigniterwizard/?ref=YT FAQ https://www.ozar.net/products/codeigniterwizard/faq/?ref=YT SOURCE CODE OF GENERATED WEB APP https://github.com/ozarnet/ci4sampleapp THE MAKING OF THE DATABASE USED IN THE DEMO https://www.youtube.com/watch?v=GUjMfrwrtco

Comments

Popular posts from this blog

What is .csp extension? C++ Server Pages

C++ Server Pages C++ Server Pages (CSP) is a Web Engine for advanced Web Application Development, that uses blended Markup Language / C++ scripts ( such as HTML/C++, XML/C++, WML/C++ etc.) Similar to ASP and JSP, it provides a great easiness in creating web pages with dynamic content, as well as complex business applications. However, instead of Java, Javascript or VBscript, it uses C++ . This brings some significant advantages: Incredibly high processing efficiency. Benchmarks have shown a range of 80 to 250 times higher processing speed than ASP. The use of pure C++ allows the use of tons of libraries that are currently available. It is important to notice that the libraries written in C++ are tens or hundreds of times more than in any other language. It is widely accepted that the most skilled programmers in the IT market are the C++ ones. However, CGI, ISAPI and other frameworks where C++ applies, do not provide the web developer with facilities for efficient app...

Valid styles for converting datetime to string

I wrote this little table and procedure to help me remember what style 104 did, or how to get HH:MM AM/PM out of a DATETIME column. Basically, it populates a table with the valid style numbers, then loops through those, and produces the result (and the syntax for producing that result) for each style, given the current date and time. It uses also a cursor. This is designed to be a helper function, not something you would use as part of a production environment, so I don't think the performance implications should be a big concern. Read more »