Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Long time!. Help with hosting app in 000webhost.../[2a02:4780:bad:13::38]/? [SOLVED]
Post: RE: Long time!. Help with hosting app in 000webhos...

OMG, thanks!!. I never ever thought about that!.
2,827 Views
2 Replies
09-17-2019, 01:30 PM
kirasiris
    Thread: Long time!. Help with hosting app in 000webhost.../[2a02:4780:bad:13::38]/? [SOLVED]
Post: Long time!. Help with hosting app in 000webhost......

I already created a post in their official forum but they insist that it has nothing to do with their system. So I'm basically building a listing system for a client and I'm trying to show him what...
2,827 Views
2 Replies
09-17-2019, 11:32 AM
kirasiris
    Thread: ciConnector
Post: ciConnector

This project took about two years to build and I finished it long ago(at least thats what I want to believe).  I wanted to build an e-commerce site but I'm afraid that I'm not that expert when implem...
5,373 Views
2 Replies
05-26-2019, 12:57 PM
kirasiris
    Thread: MediaFile
Post: MediaFile

Hello, this is my second project(easy one, took me about two days to build it.) in CodeIgniter, just wondering what you guys think about it!. Features are: Register via email Login system Admin...
8,998 Views
3 Replies
05-26-2019, 12:46 PM
kirasiris
    Thread: How to Multiple File Upload with Insert Batch in CodeIgniter?
Post: How to Multiple File Upload with Insert Batch in C...

So this is the problem, I'm trying to multi file upload in CodeIgniter but I want to also send it to two tables in database also. AI = "auto_increment"; ci_posts: post_id(AI), post_image. ci_rela...
3,328 Views
1 Replies
09-23-2018, 02:09 AM
kirasiris
    Thread: Help with query
Post: RE: Help with query

php_rocs Wrote: (09-11-2018, 10:16 AM) -- .....or He could create a view that pulls all users that he is following and that are following him and have two variables that signify whether he is foll...
4,884 Views
6 Replies
09-11-2018, 12:00 PM
kirasiris
    Thread: Help with query
Post: RE: Help with query

Pertti Wrote: (09-11-2018, 08:32 AM) -- By the looks of it you are doing it 1 query by for every friend? That unfortunately creates infamous N+1 issue, if you have 100 friends, you are doing 100 DB q...
4,884 Views
6 Replies
09-11-2018, 11:57 AM
kirasiris
    Thread: Help with query
Post: Help with query

So I'm currently working with a following model system. You follow this x-user and x-user may not follow you back. I have been able to display the users that I'm following but I would like to di...
4,884 Views
6 Replies
09-11-2018, 12:48 AM
kirasiris
    Thread: Having trobles with data from DB
Post: Having trobles with data from DB

I currently have this code in my controller: PHP Code: --    public function profile($username){                // Check Login        if(!$this->session->userdata('user_id')){ // Redire...
2,986 Views
3 Replies
07-27-2018, 04:33 AM
kirasiris
    Thread: CodeIgniter: ManytoMany and HasManyThrough
Post: RE: CodeIgniter: ManytoMany and HasManyThrough

First of all doing joins is not a good technique(nor for me as I really hate them unless there's a real need of them to use, especially when you're trying to edit/update/retrieve data frin an article/...
8,507 Views
1 Replies
07-27-2018, 03:56 AM
kirasiris
    Thread: Get data from two tables in single foreach
Post: Get data from two tables in single foreach

So I currently have three tables: AI = auto increment. ci_comments: comment_id(AI), email, website, body. ci_users: user_id(AI), username, slug, biography. ci_relationship: id(AI), user_id...
5,347 Views
2 Replies
07-19-2018, 04:15 AM
kirasiris
    Thread: How to delete folder according to username.
Post: RE: How to delete folder according to username.

jreklund Wrote: (07-03-2018, 09:54 AM) -- It looks like $item dosen't contain anything. You are using delete() before getting the username. You need to check so that $item aren't NULL and that th...
3,307 Views
3 Replies
07-03-2018, 07:18 PM
kirasiris
    Thread: How to delete folder according to username.
Post: How to delete folder according to username.

I have a register form in which users can registers to create their own account in my application and I'm giving them the oportunity to upload their own pictures etc. Everything works well so far. Th...
3,307 Views
3 Replies
07-03-2018, 07:14 AM
kirasiris
    Thread: Problema con foreach
Post: RE: Problema con foreach

Primero que nada, para conseguir data proveniente de la base de datos,simplemente tienes que hacer algo como esto: Ejemplo de mi controller PHP Code: -- $data['users'] = $this->User_model->get_list(...
4,109 Views
1 Replies
06-28-2018, 10:16 PM
kirasiris
    Thread: How to correctly update batch according to post.id
Post: RE: How to correctly update batch according to pos...

Pertti Wrote: (06-24-2018, 11:00 PM) -- It's because you are using post_id as row identifier, but that's not unique per record. You need to use ci_terms_relationship.id if you want to use update_batc...
13,956 Views
8 Replies
06-25-2018, 03:26 AM
kirasiris
    Thread: How to correctly update batch according to post.id
Post: How to correctly update batch according to post.id

So I currently have three tables. ci_posts: id, title, description. ci_terms: term_id,title,slug ci_terms_relationship: id, post_id, term_id I have a function in which I can easily add ...
13,956 Views
8 Replies
06-24-2018, 06:45 AM
kirasiris
    Thread: What's more secure than? when showing user id data
Post: What's more secure than? when showing user id data

So here I am playing again with CodeIgniter and I tried modifying my User controller and some private pages and I just realized that when accessing to pages like "cart.php" I can do this in order to s...
1,794 Views
1 Replies
06-22-2018, 07:10 AM
kirasiris
    Thread: Any good ORM library/ helper you guys can recommend?
Post: Any good ORM library/ helper you guys can recommen...

So I've been working on a project already for around 4 months I guess and is almost done, however there is something I really need in almost any if not all of my controllers and I'm referring to creat...
2,099 Views
1 Replies
04-16-2018, 11:41 PM
kirasiris
    Thread: Send only selected data .. many-to-many relationship table.
Post: Send only selected data .. many-to-many relationsh...

So, I want to create a many-to-many relationship table in my database for which I decided to create a function which is supposed to let me send data with not problem. PHP Code: --            // Cre...
2,853 Views
1 Replies
04-01-2018, 03:33 AM
kirasiris
    Thread: CodeIgniter 3.1.8 Released
Post: RE: CodeIgniter 3.1.8 Released

Thank you :)
87,760 Views
40 Replies
03-23-2018, 11:16 PM
kirasiris

Theme © iAndrew 2016 - Forum software by © MyBB