Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: Before the insert a modal
Post: RE: Before the insert a modal
Check Callbacks in Form Validation
https://www.codeigniter.com/userguide3/l...on-methods |
|
pravins |
Regional User Groups
|
1 |
2,537 |
11-06-2017, 10:47 PM |
|
|
Thread: Explode for selected
Post: RE: Explode for selected
$cid is array in your case, so the <option> selected will be like this
Code:<option value="<?php echo $c->ID; ?>" <?php echo in_array($c->ID, $cid) ? "selected... |
|
pravins |
General Help
|
2 |
3,827 |
11-06-2017, 10:43 PM |
|
|
Thread: 500 Internal Server Error after changing gmail password
Post: RE: 500 Internal Server Error after changing gmail...
Enable debug mode to check the issue by using
PHP Code:$mail->SMTPDebug = 1; |
|
pravins |
General Help
|
2 |
2,862 |
10-05-2017, 02:19 AM |
|
|
Thread: Database Error
Post: RE: Database Error
Have you updated the following configuration in config/database.php file
PHP Code:$db['default']['dbdriver'] = "mysqli"; |
|
pravins |
Libraries & Helpers
|
1 |
1,974 |
07-21-2017, 02:33 AM |
|
|
Thread: CI error
Post: RE: CI error
I thinks this is the same one
http://forum.codeigniter.com/printthread.php?tid=64363
you must have resolved at that time(02-15-2016)...now its the same issue you are facing...its strange |
|
pravins |
General Help
|
5 |
6,165 |
10-01-2016, 01:33 AM |
|
|
Thread: CI error
Post: RE: CI error
Check this line
C:\xampp\htdocs\gsa\application\site\controllers\home.php(9) |
|
pravins |
General Help
|
5 |
6,165 |
09-30-2016, 10:29 PM |
|
|
Thread: Limited Result using ODBC driver
Post: RE: Limited Result using ODBC driver
(08-18-2016, 12:34 AM)wacky_dandoy Wrote: (08-18-2016, 12:24 AM)pravins Wrote: Show us "SELECT" query by which you are fetching the records from database.
You have just provided database connecti... |
|
pravins |
General Help
|
3 |
2,530 |
08-18-2016, 03:08 AM |
|
|
Thread: Limited Result using ODBC driver
Post: RE: Limited Result using ODBC driver
Show us "SELECT" query by which you are fetching the records from database.
You have just provided database connection array. |
|
pravins |
General Help
|
3 |
2,530 |
08-18-2016, 12:24 AM |
|
|
Thread: SEO Plugins
Post: RE: Issue date
Use MySQL DATE_ADD() function
Refer: https://dev.mysql.com/doc/refman/5.5/en/...n_date-add |
|
pravins |
General Help
|
2 |
2,122 |
06-24-2016, 02:07 AM |
|
|
Thread: Insert auto date
Post: RE: Insert auto date
(06-22-2016, 12:43 AM)davy_yg Wrote: (06-21-2016, 09:46 PM)pravins Wrote: If you are explicitly want to add date in table then you can use below code
PHP Code:$this->db->set('content_d... |
|
pravins |
General Help
|
4 |
3,433 |
06-22-2016, 12:53 AM |
|
|
Thread: Insert auto date
Post: RE: Insert auto date
If you are explicitly want to add date in table then you can use below code
PHP Code:$this->db->set('content_date', 'NOW()', FALSE); or $data['content_date']&nbs... |
|
pravins |
General Help
|
4 |
3,433 |
06-21-2016, 09:46 PM |
|
|
Thread: mysqli_num_rows() expects parameter 1 to be..
Post: RE: mysqli_num_rows() expects parameter 1 to be..
Check you MySQL query
echo the query and execute it in MySQL |
|
pravins |
General Help
|
2 |
2,814 |
05-25-2016, 05:16 AM |
|
|
Thread: Undefined variable: token
Post: RE: Undefined variable: token
Use this
PHP Code:<input type="hidden" name="token" value="<?php echo isset($token) ? $token : '';?>"> |
|
pravins |
General Help
|
4 |
6,741 |
05-24-2016, 06:34 AM |
|
|
Thread: New to Codeigniter Error issue with Login and Register code
Post: RE: New to Codeigniter Error issue with Login and ...
Can you please post the code |
|
pravins |
General Help
|
6 |
4,860 |
03-25-2016, 01:51 AM |
|
|
Thread: json_encode view returns null
Post: RE: json_encode view returns null
view returns data as a string
please check "Returning views as data" section in View documentation.
http://www.codeigniter.com/user_guide/ge...ws-as-data |
|
pravins |
Issues
|
5 |
4,969 |
08-13-2015, 02:50 AM |
|
|
Thread: MySQL foreign key Value insert
Post: RE: MySQL foreign key Value insert
I think $this->db->insert_id(); will solve your problem
check this URL: http://www.codeigniter.com/userguide3/da...lpers.html |
|
pravins |
General Help
|
3 |
3,959 |
12-10-2014, 05:04 AM |