Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Basics of PHP Frameworks
Post: RE: Basics of PHP Frameworks

You dont have to learn the any framework to speed up your development as long as you know the basics of oop. You should study HMVC/MVC structure to speedup your development no matter what framework yo...
22,803 Views
13 Replies
08-10-2017, 03:29 AM
marksman
    Thread: IRC Channel
Post: RE: IRC Channel

Where can we register to join the slack channel?
43,723 Views
19 Replies
07-28-2017, 08:37 PM
marksman
    Thread: Which browser do you guys recommend?
Post: RE: Which browser do you guys recommend?

Chrome for development Chromium for browsing
126,313 Views
97 Replies
06-30-2017, 05:55 PM
marksman
    Thread: Is it safe to use sessions for user validation?
Post: RE: Is it safe to use sessions for user validation...

Your query is not safe
5,015 Views
5 Replies
06-16-2017, 04:18 PM
marksman
    Thread: is loading through static class is bad idea?
Post: RE: is loading through static class is bad idea?

This make no sense unless you have some implementations in your Load class
29,846 Views
21 Replies
06-16-2017, 04:01 PM
marksman
    Thread: problem with single quote in input field
Post: RE: problem with single quote in input field

I think this may help you http://php.net/manual/en/function.stripslashes.php
9,130 Views
5 Replies
06-16-2017, 03:57 PM
marksman
    Thread: Command Prompt Software
Post: RE: Command Prompt Software

CMDER > http://cmder.net/ its a customized conemu :)
6,269 Views
4 Replies
06-03-2017, 06:19 PM
marksman
    Thread: Creating Tables
Post: RE: Creating Tables

I think you have to read the docs first. CodeIgniter has a very nice documentation. https://www.codeigniter.com/user_guide/libraries/migration.html its also available in your local copy under us...
3,149 Views
2 Replies
05-09-2017, 02:41 PM
marksman
    Thread: $_POST empty if there is accent in text
Post: RE: $_POST empty if there is accent in text

If you are using Javascript try using JSON.stringify(object) and in PHP its json_encode(array) to generate valid JSON.
5,115 Views
4 Replies
05-08-2017, 04:49 AM
marksman
    Thread: concat validation rules with form_validation
Post: RE: concat validation rules with form_validation

@Martin, I think its just an example. I'm sorry cant help in this topic. I dont use ci form_validation. I use regex to validate things like that.
11,064 Views
8 Replies
05-04-2017, 02:38 PM
marksman
    Thread: Atom / VSC - code completion
Post: RE: Atom / VSC - code completion

I personaly use Atom as my text editor, in office we use PHPStorm it almost done everything with minimal configuration. in atom: code completion: I use to configure atom's snippet format on save: ph...
6,706 Views
4 Replies
05-04-2017, 01:47 PM
marksman
    Thread: Session lost after redirect
Post: RE: Session lost after redirect

do login_validation and dashboard belongs to same class? would you show us your controller class?
20,661 Views
11 Replies
05-04-2017, 04:36 AM
marksman
    Thread: What's the standard way of dealing with the ordering of multiple ajax requests?
Post: RE: What's the standard way of dealing with the or...

skunkbad Wrote: (05-03-2017, 05:08 PM) -- I ended up doing this, which was my original idea: Code: -- (function($){ var namespace = { request_number: 0, response_number: 0, doTheThing:...
6,873 Views
6 Replies
05-03-2017, 07:47 PM
marksman
    Thread: What's the standard way of dealing with the ordering of multiple ajax requests?
Post: RE: What's the standard way of dealing with the or...

you can disable async if you will be using loop to execute your ajax request in order just set async: false to your $.ajax, its the easiest way but its a very bad idea. If you want to work with asynch...
6,873 Views
6 Replies
05-03-2017, 02:49 PM
marksman
    Thread: [split] How to change menu width?
Post: RE: [split] How to change menu width?

its not related to codeigniter anymore, btw you may study basic html/css first before moving to styling frameworks. w3school is a good reference
3,240 Views
2 Replies
05-03-2017, 06:03 AM
marksman
    Thread: Ecommerce website in CI
Post: RE: Ecommerce website in CI

calcio Wrote: (04-27-2017, 09:42 AM) -- marksman Wrote: (04-27-2017, 08:08 AM) -- @calcio, do you think all vendors of laravel follow PSR-1 and 2 standards? I don't think so. You can follow PSR s...
44,176 Views
18 Replies
04-28-2017, 06:50 AM
marksman
    Thread: Ecommerce website in CI
Post: RE: Ecommerce website in CI

@calcio, do you think all vendors of laravel follow PSR-1 and 2 standards? I don't think so. You can follow PSR standards on CI depends on your structure, you don't have to touch system folder a lo...
44,176 Views
18 Replies
04-27-2017, 08:08 AM
marksman
    Thread: CSV Importing Advice
Post: RE: CSV Importing Advice

keithmclaughlin Wrote: (04-26-2017, 03:06 AM) -- marksman Wrote: (04-25-2017, 04:57 PM) -- I use PHPOffice's PHPExcel and now it is called PHPSpreadsheet PHPExcel: https://github.com/PHPOffice/PH...
11,241 Views
8 Replies
04-26-2017, 02:16 PM
marksman
    Thread: Where to store static array ?
Post: RE: Where to store static array ?

If you will be implementing solid mvc even static data should come in the model. But it would be nicer if you can also call it statically so that you dont have to instantiate the class just to get the...
10,686 Views
7 Replies
04-26-2017, 02:06 PM
marksman
    Thread: CSV Importing Advice
Post: RE: CSV Importing Advice

I use PHPOffice's PHPExcel and now it is called PHPSpreadsheet PHPExcel: https://github.com/PHPOffice/PHPExcel PHPSpreadsheet: https://github.com/PHPOffice/PhpSpreadsheet I can easily read and write...
11,241 Views
8 Replies
04-25-2017, 04:57 PM
marksman

Theme © iAndrew 2016 - Forum software by © MyBB