Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Call to undefined method CodeIgniter\HTTP\IncomingRequest::get()
Post: Call to undefined method CodeIgniter\HTTP\Incoming...

Hi, Please help with following error not sure how to resolve it.  I am implementing signin with google on my ci4 project. I get Call to undefined method CodeIgniter\HTTP\IncomingRequest::get() when...
564 Views
1 Replies
08-28-2023, 06:44 AM
remesses_thegreat
    Thread: CORS Error when sending request to my REST API
Post: CORS Error when sending request to my REST API

Hi guys, I am in the process of finalising my app but struggling to understand CORS policies on the server side. Or maybe i am just implementing it wrong.  I have an RestAPI developed using Codeign...
1,548 Views
1 Replies
06-18-2023, 05:13 AM
remesses_thegreat
    Thread: How to get distinct results joining 3 MySql tables in Codeigniter?
Post: RE: How to get distinct results joining 3 MySql ta...

I know this is late but may help someone PHP Code: -- $db      = \Config\Database::connect(); $builder = $db->table('payments p'); $builder->select('*'); $builder->join('flats f', 'f.flat_id = ...
2,878 Views
1 Replies
05-24-2023, 03:49 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

InsiteFX Wrote: (04-25-2023, 10:14 PM) -- Are you adding the group names to the links in your views? -- Yes thank you work as expected. Appreciated
12,400 Views
12 Replies
05-04-2023, 01:09 PM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

remesses_thegreat Wrote: (04-19-2023, 01:45 AM) -- InsiteFX Wrote: (04-18-2023, 11:00 PM) -- You need to use grouping. CodeIgniter 4 User Guide - Library Reference Pagination - Paginating Multipl...
12,400 Views
12 Replies
04-25-2023, 04:03 AM
remesses_thegreat
    Thread: Running Where Clause with Like Not Working
Post: RE: Running Where Clause with Like Not Working

SubrataJ Wrote: (04-19-2023, 12:51 AM) -- @"remesses_thegreat" No probs ehh, happy to help. I hope you get what you were doing wrong. and kindly mark it solved now -- Yes i now understand. Its a gr...
2,855 Views
8 Replies
04-21-2023, 03:56 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

InsiteFX Wrote: (04-19-2023, 02:50 AM) -- You need unique group# you have multiple groups with the same group number. -- I named them group 1-11 without duplicating for each call to the database. The...
12,400 Views
12 Replies
04-19-2023, 04:11 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

InsiteFX Wrote: (04-18-2023, 11:00 PM) -- You need to use grouping. CodeIgniter 4 User Guide - Library Reference Pagination - Paginating Multiple Results (https://codeigniter.com/user_guide/librar...
12,400 Views
12 Replies
04-19-2023, 01:45 AM
remesses_thegreat
    Thread: Running Where Clause with Like Not Working
Post: RE: Running Where Clause with Like Not Working

SubrataJ Wrote: (04-18-2023, 08:48 PM) -- This is bizarre whenever you are using "OR" in a query, it's the best approach to group your query in a manner to avoid conflict. PHP Code: -- $builder = $...
2,855 Views
8 Replies
04-19-2023, 12:29 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

InsiteFX Wrote: (04-18-2023, 11:00 PM) -- You need to use grouping. CodeIgniter 4 User Guide - Library Reference Pagination - Paginating Multiple Results (https://codeigniter.com/user_guide/librar...
12,400 Views
12 Replies
04-19-2023, 12:26 AM
remesses_thegreat
    Thread: Running Where Clause with Like Not Working
Post: RE: Running Where Clause with Like Not Working

demyr Wrote: (04-18-2023, 09:59 AM) -- Try sth like this: Code: -- $builder = $db->table('contractors');         $builder->like('contractor_id', $inputText);         $builder->orLike('ccontac...
2,855 Views
8 Replies
04-18-2023, 11:44 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

remesses_thegreat Wrote: (04-18-2023, 10:28 AM) -- Thanks a million saved my day. Codeigniter Rocks! -- So just ran into a small problem that i dont see mentioned in the comments. So i have a one p...
12,400 Views
12 Replies
04-18-2023, 11:35 AM
remesses_thegreat
    Thread: Tutorial for creating custom Bootstrap 4 pagers and page numbers
Post: RE: Tutorial for creating custom Bootstrap 4 pager...

Thanks a million saved my day. Codeigniter Rocks!
12,400 Views
12 Replies
04-18-2023, 10:28 AM
remesses_thegreat
    Thread: Running Where Clause with Like Not Working
Post: RE: Running Where Clause with Like Not Working

iRedds Wrote: (04-18-2023, 05:29 AM) -- https://codeigniter.com/user_guide/database/query_builder.html#query-grouping -- Thanks for the response. I had a look at this. Wont the where clause return ...
2,855 Views
8 Replies
04-18-2023, 05:48 AM
remesses_thegreat
    Thread: Running Where Clause with Like Not Working
Post: Running Where Clause with Like Not Working

Hi guys please help. I'm trying to run a search on one of the tables where i use multiple likes and a where statement. Code below. Where is ignored in this query and thus returning all the data Like s...
2,855 Views
8 Replies
04-18-2023, 04:51 AM
remesses_thegreat
    Thread: Load Data on Page Scroll in CodeIgniter 4 using Ajax jQuery
Post: RE: Load Data on Page Scroll in CodeIgniter 4 usin...

InsiteFX Wrote: (04-10-2023, 10:42 PM) -- This may help you out. jQuery load more data on scroll (https://stackoverflow.com/questions/14035180/jquery-load-more-data-on-scroll) -- Thank you so much...
1,560 Views
4 Replies
04-14-2023, 02:29 AM
remesses_thegreat
    Thread: Load Data on Page Scroll in CodeIgniter 4 using Ajax jQuery
Post: RE: Load Data on Page Scroll in CodeIgniter 4 usin...

InsiteFX Wrote: (04-10-2023, 10:42 PM) -- This may help you out. jQuery load more data on scroll (https://stackoverflow.com/questions/14035180/jquery-load-more-data-on-scroll) -- Thank you so mu...
1,560 Views
4 Replies
04-12-2023, 09:16 AM
remesses_thegreat
  Photo Thread: Load Data on Page Scroll in CodeIgniter 4 using Ajax jQuery
Post: Load Data on Page Scroll in CodeIgniter 4 using Aj...

Hi guys. I need help to load data as user scrolls down. I have searched online for a solution that suites the way i am displaying the data with no luck. Not even sure if what am trying is possible.  ...
1,560 Views
4 Replies
04-10-2023, 04:21 AM
remesses_thegreat
    Thread: validacion json
Post: RE: validacion json

1. In your code you echoed the result instead of returning. Why is that ?  return $this->response->setJSON($data); 2. On the returned error i usually use the following loop.  I'm usually working...
1,355 Views
2 Replies
01-18-2022, 12:22 PM
remesses_thegreat
    Thread: retrieve average rating on a join
Post: RE: retrieve average rating on a join

InsiteFX Wrote: (01-18-2022, 03:41 AM) -- This should help you out. CodeIgniter 4 Users Guide - Query Builder Class - selectAvg (https://codeigniter.com/user_guide/database/query_builder.html#sele...
1,482 Views
2 Replies
01-18-2022, 10:54 AM
remesses_thegreat

Theme © iAndrew 2016 - Forum software by © MyBB