0
votes
1answer
12 views
How do I set a header() and echo an image using CodeIgniter?
Hi,
I've written a method to set a header() to the appropriate file type of an upload stored in a database and then I would like to echo() the file.
The method is as follows inside a controller:
…
0
votes
5answers
106 views
How to pass an array plus variables to a function in PHP?
Hi,
I have a function prototype as such:
function do_upload( $file, $id, $type )
And I'm calling the function like this:
$this->do_upload( $files, $id, 'article' );
However, only $files is …
1
vote
4answers
83 views
Code Igniter Function Call 404
I was going through the official Code Igniter tutorial when I hit a snag...
The tutorial had me save and run this code:
<?php
class Blog extends Controller {
function index()
{
…
0
votes
1answer
38 views
CodeIgnitor, Jquery and Ajax help
I am currently building a website in codeigniter that is one page site, basically one the user comes to the page, they created with a main menu from that menu they choose which sections of the sites …
0
votes
3answers
43 views
Using codeigniter to send a digest mail, once a week, to members.
Hi all,
I'm new to codeigniter, and I'm trying to figure out how to implement a weekly digest, sent to members, possibly using the EmailHelper helper.
Does anyone have any suggestions on where to …
0
votes
3answers
19 views
Trouble with Codeigniter Routes involving a query
Hey SO,
I'm having a little trouble with a CodeIgniter route when there is a query (stuff after the ?) in the URI. I know it is good practice to replace queries with routes in CI, but I'm importing …
1
vote
4answers
38 views
Getting an error when trying to load a model
I'm loading a model for my CodeIgniter based website, but it keeps giving an error:
"Fatal error: Call to a member function on a non-object in …
0
votes
4answers
64 views
CodeIgniter, newbie questions
Hi,
I want to program in the CodeIgniter few domain and 2 admins under a linux machine.
one.com
two.com
three.com
....com
and in addition to i need two backend systems.
reports
cms
only few …
16
votes
14answers
15k views
What Code Igniter authentication library is best?
I see there are a few. Which ones are best maintained and easy to use? Or should I just write my own?
0
votes
1answer
21 views
Multi Part Form with AJAX in php/codeigniter
I am trying to create a multi page listing form (using AJAX - jquery) for a real estate site. The basic premise is that a user should be able to create a listing in step 1 of the form. In step 2 of …
0
votes
1answer
55 views
Last.fm or Spotify API
Hello,
I was hoping someone could offer me advice, Im looking to build a website, and was hoping that I could inergrate my last.fm radio station or my spotify account into it so the users can listen …
0
votes
2answers
25 views
CodeIgniter’s Input Class
Hello,
Can i use codeigniter's input class to xss clean GET data like this:
$somevar = $this->input->xss_clean($_GET['somevar']);
CodeIgniter's suggest that xss_clean method should be used for the …
0
votes
3answers
42 views
MySql PHP results.
Hi i'm working on some code with mysql and need to display the mysql results with php..
MySQL
select distinct(year(Cataloged_Date)) from records;
+------------------------+
| (year(Cataloged_Date)) …
0
votes
1answer
25 views
Query from to date with php in mysql
Hello.
I have a date field in a mysql table formatted like this: Y-m-d.
I want to export every post that has a date between $fromDate and all the way to $toDate
I am sure its easy but now i am …
0
votes
1answer
47 views
PHP: Ideal Folder Structure of MVC framework
Hello guys,
I would like to ask what is the ideal folder structure for a MVC framework that should be able to support multiple installations. For example, I install xyz framework and i run two or …
