Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Codeigniter - Vietnam Community
Post: RE: Codeigniter - Vietnam Community

toi can mot vai ban (programmers/developers) de work voi minh voi mot so big projects.  Neu ban nao can viec lam thi reply minh nhe, di nhien la lam viec co pay! Regards
12,610 Views
8 Replies
07-10-2018, 07:01 AM
ciadvantage
    Thread: What is the best IDE for development with CI
Post: RE: What is the best IDE for development with CI

Over the years, I have used Netbeans / Eclipse and PHPStorm from my previous company they paid for subscription. I knew they are all good and up to personal preference , I found Netbeans seemed to...
77,048 Views
48 Replies
06-19-2018, 08:15 AM
ciadvantage
    Thread: Intergartion forum with Codeigniter application
Post: RE: Intergartion forum with Codeigniter applicatio...

Why should you re-invent the wheel when we have so many free open sources available? How about this MyBB as you are looking at it! :) By the way, it is absolutely doable by using CodeIgniter. Then...
4,816 Views
3 Replies
05-31-2018, 06:08 PM
ciadvantage
    Thread: What is the best IDE for development with CI
Post: RE: What is the best IDE for development with CI

I have used Netbeans for many years and also Eclipse. But recently I switch to Visual Code, it is lighter and fast, you have all plugins as neccessary for access mysql, remote access so on. Also you...
77,048 Views
48 Replies
05-17-2018, 05:27 PM
ciadvantage
    Thread: Sending ID to a different table after data has been added
Post: RE: Sending ID to a different table after data has...

kirasiris Wrote: (03-14-2018, 07:03 PM) -- So I have a method in which I display the categories which are coming from ci_terms table using this: PHP Code: -- // Select Categories $categor...
3,180 Views
2 Replies
03-14-2018, 07:17 PM
ciadvantage
    Thread: Re-arranging array of array
Post: RE: Re-arranging array of array

This works ! Thank you
3,088 Views
3 Replies
03-12-2018, 08:40 PM
ciadvantage
    Thread: Re-arranging array of array
Post: Re-arranging array of array

Hi all, I have this kind of  array of example,  $data = array(   array('name'=>'Test 1 Corp', 'serviced'=>'Visual help', 'price'=>'100.00' , 'serviced_date'=>'01/01/2018'),   array('name'=>'Te...
3,088 Views
3 Replies
03-10-2018, 09:58 AM
ciadvantage
    Thread: One login for many codeigniter webapps?
Post: RE: One login for many codeigniter webapps?

saleempbt5 Wrote: (02-11-2018, 11:40 PM) -- Hi, I have at least 6, 7 codeigniter 3.x web apps to handle my company operations. I would like to incorporate it as an ERP, so that user can have only...
4,888 Views
2 Replies
02-12-2018, 08:32 PM
ciadvantage
    Thread: database seeding
Post: RE: database seeding

Is there a way to generate large test data, i.e million records for testing? example a file with name , phone number , zipcode ? thanks
9,610 Views
4 Replies
11-16-2017, 05:30 PM
ciadvantage
    Thread: Call to a member function real_escape_string() on a non-object
Post: RE: Call to a member function real_escape_string()...

I have same problem as today, kinda weird thing, in the database.php, I dont see the autoinit constanst , should i just simply added autoinit =>TRUE Many thanks
33,008 Views
0 Replies
10-16-2017, 08:38 AM
ciadvantage
    Thread: do i need to load the model again and again?
Post: RE: do i need to load the model again and again?

I think you should load it in function __construct() then it should be fine. That is how I use
3,758 Views
3 Replies
10-12-2017, 09:29 PM
ciadvantage
    Thread: Multiple form_open with button
Post: RE: Multiple form_open with button

Code: -- -- look weird in the way you have form nested within the form. I would seperate them out by div and let each form has its id such as and .  Each submit action then can always bind to its...
5,480 Views
2 Replies
10-06-2017, 10:38 PM
ciadvantage
    Thread: My Personal Starter Project : CI3 + GC + Bootstrap3
Post: RE: My Personal Starter Project : CI3 + GC + Boots...

I did use GroceryCrud partially on my projects and also you may take a look at DataTable. It is a js library and I love it it can handle large table well Regards
4,753 Views
4 Replies
10-05-2017, 09:31 AM
ciadvantage
    Thread: Always start a particular service...
Post: RE: Always start a particular service...

The controller is making your life easier with web services! Why dont you explore further and advance your skill with CI? I build my api from CI controllers Good luck
7,805 Views
6 Replies
09-30-2017, 02:27 PM
ciadvantage
    Thread: Insert 1 milion record
Post: RE: Insert 1 milion record

My pleasure!
12,645 Views
12 Replies
09-30-2017, 02:20 PM
ciadvantage
    Thread: codeigniter’s server DNS address could not be found
Post: RE: codeigniter’s server DNS address could not be ...

I think wamp maybe similar to that of xamp in which I used before on my window laptop a while ago. IT must be the way you set it up on the virtualhost file under apache2 dir. you can have your dn...
11,248 Views
7 Replies
09-29-2017, 09:48 PM
ciadvantage
    Thread: Insert 1 milion record
Post: RE: Insert 1 milion record

omid_student Wrote: (09-29-2017, 01:31 PM) -- ciadvantage Wrote: (09-29-2017, 01:25 PM) -- Well if ID is primary key then it should be auto-incremented as you set it, so it is taken care off already...
12,645 Views
12 Replies
09-29-2017, 02:17 PM
ciadvantage
    Thread: Insert 1 milion record
Post: RE: Insert 1 milion record

Well if ID is primary key then it should be auto-incremented as you set it, so it is taken care off already. Your example is like ID isnt. I would have it as primary key then problem is solved
12,645 Views
12 Replies
09-29-2017, 01:25 PM
ciadvantage
    Thread: E-mail pdf document before saving in a folder
Post: RE: E-mail pdf document before saving in a folder

You can have another function call before redirect that handles email such as $this->sendEmail($from,$to,$path_to_pdf); //you can set your require pass in params, just rough suggestion Look at ema...
2,514 Views
1 Replies
09-29-2017, 09:40 AM
ciadvantage
    Thread: Subquery or Join
Post: RE: Subquery or Join

select table1.name,table2.score from table2 join table1 on table1.username = table2.username This is equivalent and give you better picture select t1.name as 'name', t2.score as 'score' from tab...
11,986 Views
10 Replies
09-29-2017, 08:05 AM
ciadvantage

Theme © iAndrew 2016 - Forum software by © MyBB