How to use vue js in ready project of bootstrap and jquery?

|
kanhaiya_here 2021-03-04 20:48:53
send please
tafazzulaman 2021-03-05 08:26:17
Any experts online their for xss protection?
Sanjay N 2021-03-05 08:59:22
Anyone having Cocubes materials please send me
Vitthal Karad 2021-03-05 09:16:40
Any one know about pcap
sanitizerx 2021-03-05 11:05:54
Anyone know how to generate pdf with php using mysql t
meetlunkad 2021-03-05 11:19:30
How to use vue js in ready project of bootstrap and jquery ?
2021-03-05 11:20:11
What tish core php
2021-03-05 13:16:27
Any one experienced with Binary MLM software
Decostarocky 2021-03-05 15:18:42
2021-03-05 13:16:27
Any one experienced with Binary MLM software

Yes

2021-03-05 21:20:09
Hello everyone, can anyone help me with a guide to make a good software project plan.
To estimate the costs of the project and so on. Thanks
DavidDehbs 2021-03-05 23:56:09
hi some one signed xml to XADES_BES
tafazzulaman 2021-03-06 05:54:27
sanitizerx 2021-03-05 11:05:54
Anyone know how to generate pdf with php using mysql t

Dompdf

Shubham Bhatia 2021-03-06 08:09:09
Need to print it like this

Accessories = 57.5

Shubham Bhatia 2021-03-06 08:09:32
codeslide-26770.jpg

Shubham Bhatia 2021-03-06 08:10:39
codeslide-26771.jpg

Stake At heart 2021-03-06 08:30:15
Natural Numbers are simply the numbers 1, 2, 3, 4, 5, … (and so on). Given a number k and N, take sum of all numbers less than or equal to N, that are divisible by k.
Shubham Bhatia 2021-03-06 08:50:46
Stake At heart 2021-03-06 08:30:15
Natural Numbers are simply the numbers 1, 2, 3, 4, 5, … (and so on). Given a number k and N, take sum of all numbers less than or equal to N, that are divisible by k.

Didn’t get
Any orher

crisle83 2021-03-06 11:27:21
codeslide-26785.jpg
Hello everybody, i have problem with php code, Please help me!
kameshindore 2021-03-06 11:38:21
…. 2021-03-04 07:45:54
Sir actually i want to know that to use phpmailer will i have to do some extra configurations in the files just like mail function in php so that i can send mail from my localhost. Because when i try to send mail from localhost through phpmailer then it gives the error that couldn’t connect to the server.

Is this resolved ??

…. 2021-03-06 12:58:45
kameshindore 2021-03-06 11:38:21
Is this resolved ??

No sir

kishor10d 2021-03-06 13:25:21
…. 2021-03-04 07:45:54
Sir actually i want to know that to use phpmailer will i have to do some extra configurations in the files just like mail function in php so that i can send mail from my localhost. Because when i try to send mail from localhost through phpmailer then it gives the error that couldn’t connect to the server.

Any emailig package need atleast below things.

1. If you are sending from localhost then you need smtp settings. If you are using gmail to send email from local host then you have to activate access to less secure app from google account.

2. If you are sending from server then use ‘sendmail’ protocol and its settings. Every provider provides you the email settings for you.

2021-03-06 13:39:24
Shubham Bhatia 2021-03-06 08:09:32

Use Json encode in php to convert it in an array and then print all by for loop

Shubham Bhatia 2021-03-06 14:16:28
codeslide-26799.jpg
Need to print aal user infomation if they punched in or not
Shubham Bhatia 2021-03-06 14:16:39
If they punched in then it will show the details
Shubham Bhatia 2021-03-06 14:17:03
Else if someone not punched then all details showed as null
Shubham Bhatia 2021-03-06 14:17:21
If any one know then please suggest me somesolution
Shubham Bhatia 2021-03-06 14:18:57
public function getattendance()
{
$_POST = json_decode(file_get_contents(‘php://input’), true);
if(isset($_POST[‘data’]) && $_POST[‘data’] != ”)
{
$this->db->select(“sfa_user.id as id”);
$this->db->from(“sfa_user”);
$this->db->LIKE(“sfa_user.name”,$_POST[‘data’]);
$user_id = $this->db->get()->row(‘id’);
}
$limit=”;
$start=”;
$temp=”;
$this->db->select(‘sfa_attendence.*,sfa_user.name, sfa_role.role_name’);
$this->db->from(‘sfa_attendence’);
$this->db->join(‘sfa_user’,’sfa_user.id = sfa_attendence.user_id’,’left’);
$this->db->join(‘sfa_role’,’sfa_role.id = sfa_user.access_level’,’left’);
$this->db->where(“sfa_attendence.del”,”0″);
if(isset($_POST[‘search’][‘name’]) && $_POST[‘search’][‘name’] != ”)
{
$this->db->like(“sfa_user.name”,$_POST[‘search’][‘name’]);
}
if(isset($_POST[‘search’][‘date_created’]) && $_POST[‘search’][‘date_created’] != ”)
{
$this->db->like(“sfa_attendence.date_created”,$_POST[‘search’][‘date_created’]);
}
if(isset($_POST[‘search’][‘date_from’]) && isset($_POST[‘search’][‘date_to’] ))
{
$this->db->where(“sfa_attendence.date_created >=”,$_POST[‘search’][‘date_from’]);
$this->db->where(“sfa_attendence.date_created <=”,$_POST[‘search’][‘date_to’]);
}
if(isset($_POST[‘pagelimit’]) && $_POST[‘pagelimit’]!=0)
{
$this->db->limit($_POST[‘pagelimit’],$_POST[‘start’]);
}
$this->db->order_by(“sfa_attendence.id”,”desc”);
if($temp == 1)
{
$data = $this->db->get()->num_rows();
}
else
{
$data = $this->db->get()->result_array();
foreach ($data as $key => $value) {
$startTime = date_create($value[‘start_time’]);
$data[$key][‘start_time’] = date_format($startTime, ‘h:i A’);
$endTime = date_create($value[‘stop_time’]);
$data[$key][‘stop_time’] = date_format($endTime, ‘h:i A’);
if($value[‘start_address’] == ”)
{
if($value[‘start_lat’] && $value[‘start_lng’])
{
$start_latitude = $value[‘start_lat’];
$start_longitude = $value[‘start_lng’];
$start_address = $value[‘start_address’];
$attendence_id = $value[‘id’];
$address = $this->get_Address($attendence_id,$start_latitude,$start_longitude,1);
$start_address = $start_address?$start_address:’Not found’;
$data[$key][‘start_address’] = $start_address;
}
else
{
$data[$key][‘start_address’] = ‘Not found’;
}
}
if($value[‘stop_address’] == ”)
{
if($value[‘stop_lat’] && $value[‘stop_lng’])
{
$stop_latitude = $value[‘stop_lat’];
$stop_longitude = $value[‘stop_lng’];
$stop_address = $value[‘stop_address’];
$attendence_id = $value[‘id’];
$address = $this->get_Address($attendence_id,$stop_latitude,$stop_longitude,2);
$stop_address = $stop_address?$stop_address:’Not found’;
$data[$key][‘stop_address’] = $stop_address;
}
else
{
$data[$key][‘stop_address’] = ‘Not found’;
}
}
if($value[‘user_id’] != ”){
$data[$key][‘check_in_count’] = $this->db->select(‘sfa_dr_activity.id’)->from(‘sfa_dr_activity’)->where(‘del’,0)->where(‘created_by’,$value[‘user_id’])->where(‘activity_date’,$value[‘attend_date’])->get()->num_rows();
$data[$key][‘Meet_count’] = $this->db->select(‘contractor_meet.id’)->from(‘contractor_meet’)->where(‘del’,0)->where(‘status’,’completed’)->where(‘created_by’,$value[‘user_id’])->where(‘DATE(date_of_meeting)’,$value[‘attend_date’])->get()->num_rows();
$data[$key][‘today_primary_sales’] = $this->db->select(‘SUM(sfa_dr_order.order_total) as prim_order_total’)->from(‘sfa_dr_order’)->where(‘del’,0)->where(‘delivery_from’,”trimurti”)->where(‘created_by’,$value[‘user_id’])->where(‘DATE(date_created)’,$value[‘attend_date’])->get()->row(‘prim_order_total’);
$data[$key][‘today_primary_sales_count’] = $this->db->select(‘sfa_dr_order.id’)->from(‘sfa_dr_order’)->where(‘del’,0)->where(‘delivery_from’,”trimurti”)->where(‘created_by’,$value[‘user_id’])->where(‘DATE(date_created)’,$value[‘attend_date’])->get()->num_rows();
$data[$key][‘today_secondary_sales’] = $this->db
kp_8190 2021-03-06 14:53:01
codeslide-26807.jpg
Hello…i need some help guys. how can i add this type of Quote Table in woocommerce ?
kp_8190 2021-03-06 14:53:02
codeslide-26808.jpg

Lento Velano 2021-03-06 15:01:54
Any python developers in here ?
2021-03-06 17:55:26
Lento Velano 2021-03-06 15:01:54
Any python developers in here ?

I am

2021-03-06 17:55:38
Lento Velano 2021-03-06 15:01:54
Any python developers in here ?

You’re welcome

Apke Papa 2021-03-06 18:24:08
Lento Velano 2021-03-06 15:01:54
Any python developers in here ?

I am

Rockzz_18 2021-03-06 20:24:59
Can anyone share contact form php mail sender code
Rockzz_18 2021-03-06 20:26:32
codeslide-26821.jpg

|