← prev | next →
Deepakb21 2020-07-11 15:08:22
phinx_de 2020-07-11 05:35:08
Problem in your query
Deepakb21 2020-07-11 15:10:20
2020-07-11 06:01:48
There no such error message sir only i am getting is “error while registration”
May be parameters in query is in valid print query and run on phpmyadmin
2020-07-11 15:11:05
Deepakb21 2020-07-11 15:10:20
May be parameters in query is in valid print query and run on phpmyadmin
It’s resolved by rohit bro, thanks for the reply
phinx_de 2020-07-11 15:13:27
Deepakb21 2020-07-11 15:08:22
Problem in your query
Its okay now bro thank you very much
A.K. 2020-07-11 22:02:22
Anyone have experience with opentok/Tokbox integrations ? Please inbox me, I have some issue and will pay for same
ipsita11 2020-07-12 07:30:44

Which one is welcome. Php . This new version CI framework
rajuteli 2020-07-12 07:31:38
Check ina route folder
rajuteli 2020-07-12 07:32:01
In config > route
ipsita11 2020-07-12 07:32:44
Ok
ipsita11 2020-07-12 07:34:29

There’s no folder of route in config
mohinishsharma 2020-07-12 08:35:13
ipsita11 2020-07-12 07:34:29
There’s no folder of route in config
It’ll be in controllers folder. Check home.php it’ll contain the following route http://localhost/home
And welcome.php you’ll find it in “views” folder its the template or view file
mohinishsharma 2020-07-12 08:39:26
And to create dynamic routes to accept route or path params you need to create “Routes.php” file in config folder and define your routes in it.
Follow this documentation
https://codeigniter.com/user_guide/incoming/routing.html?highlight=route
ipsita11 2020-07-12 09:25:23
Ok, Thank you
dr_hjc 2020-07-12 09:39:10
Can anyone tell me how I can copy website from source code
rohit267 2020-07-12 10:02:50
dr_hjc 2020-07-12 09:39:10
Can anyone tell me how I can copy website from source code
you have the source code?
dr_hjc 2020-07-12 10:10:40
Yes
kumar_narayan 2020-07-12 15:50:33
Any android Developer here
rohit267 2020-07-12 15:55:42
kumar_narayan 2020-07-12 15:50:33
Any android Developer here
yes
Kaushal_comp 2020-07-12 18:26:28
Can anyone help me to sort out one problem in php…it’s a crop image problem
Abhishek Dutt 2020-07-12 19:00:54
Anyone know how to configure code runner in vs code how to set this configuration paths
Abhishek Dutt 2020-07-12 19:02:06
rohit267 2020-07-12 19:14:37
Abhishek Dutt 2020-07-12 19:02:06
use xampp server
rohit267 2020-07-12 19:14:52
without apache it won’t run
hardik 2020-07-12 19:18:58
set path in env variable
hardik 2020-07-12 19:19:31
locate php path in c drive and set these path in env variable
hardik 2020-07-12 19:20:28
https://www.javatpoint.com/how-to-set-path-in-java
How to Set Path in Java – Javatpoint –
www.javatpoint.comHow to set path in java. Let’s see how can we set path in java on windows and linux platform with temporary and permanent path.
hardik 2020-07-12 19:20:43
just like this , you have to set path for php
Prakash 2020-07-12 21:47:22
Need bulk sms service if anyone have it let me know price and sms package details…
savi1104 2020-07-12 22:23:47
Anybody has any idea on how to use cron job in windows
Abisun124 2020-07-13 04:16:00
2020-07-13 07:44:39
Any php developer here i need some help
rajuteli 2020-07-13 07:45:14
2020-07-13 07:44:39
Any php developer here i need some help
Yes tell
2020-07-13 07:45:35
I have code realted to student portal
2020-07-13 07:45:43
When i run it at my local host then
2020-07-13 07:45:49
It show some error
2020-07-13 07:46:01
Like this
rajuteli 2020-07-13 07:46:50
In db connection provide a password
Vetted 2020-07-13 08:01:27
hi, anyone here can do a quick job node + https://ant.design
phinx_de 2020-07-13 13:46:23
Hello guys, quick question here please.. I cant call my ajax script on js folder, is there any wrong with my code here
phinx_de 2020-07-13 13:46:48
$(document).ready(function(){
function load_unseen_notification(view = ”)
{
$.ajax({
url:”fetch.php”,
method:”POST”,
data:{view:view},
dataType:”json”,
success:function(data)
{
$(‘.dropdown-menu’).html(data.notification);
if(data.unseen_notification > 0)
{
$(‘.count’).html(data.unseen_notification);
}
}
});
}
load_unseen_notification();
$(‘#comment_form’).on(‘submit’, function(event){
event.preventDefault();
if($(‘#tracking_id’).val() != ” && $(‘#cfirstname’).val() != ” && $(‘#clastname’).val() != ” && $(‘#email’).val() != ” && $(‘#message’).val() != ”)
{
var form_data = $(this).serialize();
$.ajax({
url:”insert.php”,
method:”POST”,
data:form_data,
success:function(data)
{
$(‘#comment_form’)[0].reset();
$_SESSION[‘message’] = “Message sent! Thank you for your feedback!”;
load_unseen_notification();
}
});
}
else
{
alert(“Both Fields are Required”);
}
});
$(document).on(‘click’, ‘.dropdown-toggle’, function(){
$(‘.count’).html(”);
load_unseen_notification(‘yes’);
});
setInterval(function(){
load_unseen_notification();;
}, 5000);
});
phinx_de 2020-07-13 13:47:49
Both fetch.php and insert.php is in relative path or public_html
phinx_de 2020-07-13 14:54:51
Its okay now thank you guys pls disregard
phinx_de 2020-07-13 19:23:58
Hello guys, can someone please help me with this error..
phinx_de 2020-07-13 19:24:31
nowhere552 2020-07-13 20:04:09
phinx_de 2020-07-13 19:23:58
Hello guys, can someone please help me with this error..
Check for password while installing mysql
phinx_de 2020-07-13 20:30:44
nowhere552 2020-07-13 20:04:09
Check for password while installing mysql
Thanks man, looks like okay now, I am using different account
2020-07-13 21:11:48
https://youtu.be/UvepX0OyTG4
How to Get Job After B Tech/BE | Life After B Tech | Harsha | బీటెక్ తర్వాత జాబ్ సంపాదించడం ఎలా? –
YouTube
kameshindore 2020-07-13 21:56:43
savi1104 2020-07-12 22:23:47
Anybody has any idea on how to use cron job in windows
yes. its pretty simple.
Harikrishnan5494 2020-07-14 05:58:01
Hi all…I need a help… anyone please tell me how to write logic for binary income calculation for mlm..
← prev | next →