Tagged Questions
0
votes
0answers
9 views
codeigniter how to connect to a Progress database using ODBC
Im using codeigniter and my php code is sitting on a IIS 5 box.
I need to connect to my database, which is is a linux box, database type is Progress, and it's uding an ODBC driver.
Can someone please ...
0
votes
2answers
38 views
Codeigniter trim not working in database class
I need to do trim before inserting into database. I am using codeigniter . Now if i have to do trim before inserting , then i have to make code change across project . So i thought to do trim before ...
0
votes
2answers
19 views
codeigniter database error while upload to cpanel
I am trying to upload my codeigniter website to cpanel
But, I am getting following error:
A Database Error Occurred
Unable to connect to your database server using the provided settings.
Filename: ...
0
votes
2answers
28 views
Codeigniter Extracting Data From Database With Function
I have to extract two separate pieces of information from my mysql database. I'm having a hard time trying to figure out how to extract two different sets of information via function(s) I'm writing. ...
0
votes
1answer
19 views
Codeigniter Extracting Information, Function Isn't Working
I'm attempting to extract information from my mysql database. I believe I'm properly joining tables (function syntax below) but when I try and display the extracted information inside of a view, ...
-5
votes
3answers
48 views
Unable to connect to your database server [closed]
i am gettin this error :
A Database Error Occurred
Unable to connect to your database server using the provided settings.
Filename: C:\xampp\htdocs\bank\ci\system\database\DB_driver.php
Line ...
1
vote
2answers
40 views
Dynamic Forms—Proper way to Setup Database?
A client for which I'm working on a web app needs various applications for some services they offer. They'd like to be able to manage/create these applications themselves. I'm having trouble figuring ...
2
votes
1answer
48 views
Codeigniter Autocomplete from Database
I have some problems in my project. I am trying to do autocomplete with JavaScript in CodeIgniter. I already tried many options, but they don't work!
The controller:
public function ...
1
vote
1answer
25 views
Normalization , Category Listing and Code igniter
I have three tables
articles
categories
and relationship table articles_categories
that table is where I store my relationship like this using normalization features.Like this
I was able to ...
-1
votes
1answer
42 views
can't access Codeigniter database [closed]
I'm creating a website and I've been trying to connect to the database, I really can't find the problem. all I need is to get all "job_desc" from my database "bcjobs" and after a user can click a ...
1
vote
4answers
36 views
Codeigniter, Join and Case When Query
Trying to Execute this query.
$sql ="SELECT '*' FROM
'osp_job_details'
LEFT JOIN
'osp_job_status_track' ON 'osp_job_status_track'.'JobID' = ...
3
votes
1answer
56 views
Codeigniter Database results - Objects or Arrays?
I've been using Codeigniter for a good while now and i've often wondered which/whether to use Codeigniter's
$query->result() or $query->result_array()
Personally, I've tended to stick with ...
0
votes
2answers
59 views
How make CRUD of one to many in grocerycrud?
I have tables like this
user
id ,name
user_email
id ,user_id,email
user may have multiple emails.How can i do CRUD operation of these type of data in codeigniter grocerycrud?I tried this but ...
0
votes
1answer
46 views
Codeigniter - loading images from browser
I've made an upload form using CI.
Now my photos are uploaded in C:\xampp\htdocs\ci_new\uploads*.jpg
I want these images to be accessible from the web, so i can add their path to my database, but ...
0
votes
1answer
40 views
Codeigniter return and display the array result of model function, called by jquery, on my view
I am using codeigniter in my app. I have an autocomplete drop down that on selection calls a controller function to display further details about the selected dropdown value.
I have used the below ...