CodeIgniter Forums
Built with CI4 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=31)
+--- Thread: Built with CI4 (/showthread.php?tid=77073)



Built with CI4 - John_Betong - 07-16-2020

I'm considering creating an additional section on a CI4 test project and would be grateful for assistance.

The idea is to allow programmers to:

1. upload details of their CI4 Projects
2. store information in a database
3. create links to each project 
4. enable comments for each project

Initially a database requires creating which would have at least two tables with the following information:

Table: Projects
id - primary index
icmx - unique link to comments table
username: varchar(128)
url: varchar(128)
notes: text (user's project notes)
details: text (project information)

Table: Comments 
id - primary index
icmx: index to project
comment: text

Once the tables are created then a Controller and Views require creating.

Looking forward to suggestions.


RE: Built with CI4 - marcogmonteiro - 07-17-2020

You might want to add timestamps to those tables.


RE: Built with CI4 - John_Betong - 07-31-2020

Eventually managed to create a database with a table for:

1. Username
2. Url 
3. Notes 

If any user would like to add a site that is built with CI4 then please send a message with the above fields.

As noted on the site, I do not know of anyway to ensure a site is written using CodeIgniter4 so adding a site is by request only.

Looking forward to adding your entry Smile