Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: PDF stored in mssql
Post: PDF stored in mssql

I have a database that is on a sqlsrv. I have managed to connect to it CI and I can retrieve the data. All that works very well indeed. My problem is with a PDF that is stored in a varbinay filed. ...
13,974 Views
2 Replies
03-21-2018, 07:55 AM
rtenny
    Thread: Howdo I find the best codeigniter development company?
Post: RE: Howdo I find the best codeigniter development ...

@PaulD does have some good point but in my experience I found using several freelancers is extremely time consuming, expensive and frustrating. I would always prefer a company. Unfortunately (and that...
7,595 Views
5 Replies
10-03-2017, 04:15 AM
rtenny
    Thread: Started Learning CodeIgniter
Post: RE: Started Learning CodeIgniter

I learned CI after I learned Zend. Knowing both I have now a far better understanding on how things can be done. I managed to pick up Laravel within a few hours (obviously not on an expert level) and ...
5,146 Views
2 Replies
10-03-2017, 04:07 AM
rtenny
    Thread: Cannot set max execution time limit due to system policy [was CI 2.x!?]
Post: RE: Cannot set max execution time limit due to sys...

Try removing the line with set_time_limit() or comment it out. I dont think that CI will set a time limit so I presume its something you added. But with out a bit of code from you its impossible t...
6,395 Views
3 Replies
10-02-2017, 01:09 AM
rtenny
    Thread: Dynamic form
Post: RE: Dynamic form

Leider kann ich dir keine PM schicken. Es gibt in deinem profil keine Option. Oder muessen wir erst Freunde sein?
10,768 Views
8 Replies
09-29-2017, 08:56 AM
rtenny
    Thread: CI for Accounting
Post: RE: CI for Accounting

I would like to help but my books are filled for the next 9 month. If you have specific question just ask them here and we all will try to help. But I dont have time for any actual coding tasks.
24,097 Views
18 Replies
09-29-2017, 07:15 AM
rtenny
    Thread: Is CI FP friendly?
Post: RE: Is CI FP friendly?

skunkbad Wrote: (09-28-2017, 09:24 AM) -- rtenny Wrote: (09-28-2017, 09:00 AM) -- @skunkbad still laughing about your answer, thats a classic -- That's the only FP I know. When I started making we...
11,721 Views
8 Replies
09-29-2017, 07:10 AM
rtenny
    Thread: Subquery or Join
Post: RE: Subquery or Join

select table1.name,table2.score from table2 join table1 on table1.username = table2.username it will only return table1.name,table2.score nothing else unless you add it to the field list
12,389 Views
10 Replies
09-29-2017, 07:08 AM
rtenny
    Thread: Generate code without guess
Post: RE: Generate code without guess

If you need simple one off codes that dont need to have a specific value I would use a simple hash system. For example creatinge the hash I would use todays data and exact time and hash that. For e...
10,490 Views
5 Replies
09-29-2017, 07:05 AM
rtenny
    Thread: Is CI FP friendly?
Post: RE: Is CI FP friendly?

@skunkbad still laughing about your answer, thats a classic
11,721 Views
8 Replies
09-28-2017, 09:00 AM
rtenny
    Thread: Do you have a hobby?
Post: RE: Do you have a hobby?

Photography and rock climbing. I need to balance my left brain with some creativity and art and rock climbing for physical execise.
90,618 Views
79 Replies
09-28-2017, 08:53 AM
rtenny
    Thread: Delete multiple rows using checkbox
Post: RE: Delete multiple rows using checkbox

This $id = $this->input->post('ckbdelete'); return an array of ids. you need to loop through the ids and delete each one. something like this foreach ($id as $i){ $this->guestbook_model->...
3,388 Views
2 Replies
09-27-2017, 08:57 AM
rtenny
    Thread: Session drivers
Post: RE: Session drivers

As I already said in my post. It depends on you hardware. Personally i always use Database. But then all my databases have there own server and do not share the web server resources.
5,598 Views
5 Replies
09-27-2017, 08:51 AM
rtenny
    Thread: Google Chrome Moving to all HTTPS
Post: RE: Google Chrome Moving to all HTTPS

wow, do you live under a rock? (just kidding) Chrome is doing that since Jan 2017. Created a lot of work for me. Some easy to fix others proofed really difficult. Google is forcing everybody t...
5,978 Views
4 Replies
09-27-2017, 08:49 AM
rtenny
    Thread: Subquery or Join
Post: RE: Subquery or Join

I am not sure on this but i believe option is will be the faster one (if you have your index set correct) The second one would create 2 selects and might not be able to use the index as efficiant. ...
12,389 Views
10 Replies
09-27-2017, 08:42 AM
rtenny
    Thread: pass many same values to model
Post: RE: pass many same values to model

In your case each input field has the same name. They are either called data_id or id. You need to create a input arrays Try this
3,327 Views
2 Replies
09-27-2017, 08:39 AM
rtenny
    Thread: Session drivers
Post: RE: Session drivers

The drives store the session data in different location. file writes all data to the harddisk. On a busy site you can end up with thousands of files in the folder and a hight IO load. database will ...
5,598 Views
5 Replies
09-27-2017, 08:32 AM
rtenny
    Thread: Better update routine?
Post: RE: Better update routine?

@PaulID, i hear you about the old dog. I wrote my first programm 1983 on an Apple IIe. Time flies when you having fun.
33,327 Views
22 Replies
09-22-2017, 03:39 AM
rtenny
    Thread: User Guide (Static Page) Documentation Clarification Please
Post: RE: User Guide (Static Page) Documentation Clarifi...

Look at line number 9 there seem to be something missing. Either a semicolon or } or ) Most likey you did not select the entire code and pasted only parts of it.
4,956 Views
5 Replies
09-22-2017, 03:37 AM
rtenny
    Thread: Problem with database query
Post: RE: Problem with database query

here you use accept without quotes 'votes.content = accept' I belive that should be 'votes.content = "accept"'
4,658 Views
5 Replies
09-22-2017, 03:34 AM
rtenny

Theme © iAndrew 2016 - Forum software by © MyBB