Who want to work with me?

|
2019-02-04 12:26:09
MontyLalwani 2019-02-03 09:58:28
Hii any one who is interested to work in corephp please ping me

Can we discuss

Sruthy 2019-02-04 17:01:14
How to display the datatable by taking the values from database in codeligniter using json and ajax
raj_eswar 2019-02-04 18:57:29
How can I get the name of file uploaded in php

Iam using
<input type =file name=’abc’ >

$file_name=$_FILES[‘abc’ ][‘name’ ]

it’s not working

I used

$file_name=$_POST[‘abc’ ][‘name’ ]

It’s giving only first character of name

Mayank_theDevloper 2019-02-04 18:59:32
Use <form action=”upload.php”method=”post”enctype=”multipart/form-data”>
Mayank_theDevloper 2019-02-04 19:00:28
enctype=”multipart/form-data”
Mayank_theDevloper 2019-02-04 19:00:42
raj_eswar 2019-02-04 18:57:29
How can I get the name of file uploaded in php

Iam using
<input type =file name=’abc’ >

$file_name=$_FILES[‘abc’ ][‘name’ ]

it’s not working

I used

$file_name=$_POST[‘abc’ ][‘name’ ]

It’s giving only first character of name

enctype=”multipart/form-data”

Sohil_Vahora 2019-02-04 19:21:11
raj_eswar 2019-02-04 18:57:29
How can I get the name of file uploaded in php

Iam using
<input type =file name=’abc’ >

$file_name=$_FILES[‘abc’ ][‘name’ ]

it’s not working

I used

$file_name=$_POST[‘abc’ ][‘name’ ]

It’s giving only first character of name

Send us the image of code

raj_eswar 2019-02-04 19:24:32
Mayank_theDevloper 2019-02-04 19:00:42
enctype=”multipart/form-data”

Thanks a lot it worked 😁

Mayank_theDevloper 2019-02-04 19:24:51
Welcome
Ebison 2019-02-05 08:09:35
Sruthy 2019-02-04 17:01:14
How to display the datatable by taking the values from database in codeligniter using json and ajax

https://www.patchesoft.com/using-datatables-with-codeigniter-tutorial

Using Datatables with CodeIgniter Tutorial | PatchesoftPatchesoft
Implement Datatables with PHP and CodeIgniter in this tutorial series, including searching, sorting and pagination.
S A 2019-02-05 20:38:18
MontyLalwani 2019-02-03 09:58:28
Hii any one who is interested to work in corephp please ping me

Hiii bro I’m interested work on core php

Doli Gohel 2019-02-05 21:26:50
2019-02-02 22:26:06
Who want to work with me?

I’m interested to work in php and WordPress

2019-02-06 07:17:00
MontyLalwani 2019-02-03 09:58:28
Hii any one who is interested to work in corephp please ping me

I am interested

2019-02-06 07:17:00
MontyLalwani 2019-02-03 09:58:28
Hii any one who is interested to work in corephp please ping me

I m interested

Sruthy 2019-02-06 11:25:16
How to make the input fields enable while a edit icon is clicked in codeligniter
Mayank_theDevloper 2019-02-06 11:44:36
Sruthy 2019-02-06 11:25:16
How to make the input fields enable while a edit icon is clicked in codeligniter

Use jquery for that

Mayank_theDevloper 2019-02-06 11:58:40
https://stackoverflow.com/questions/21105375/show-textbox-when-button-is-click

Show textbox when button is clickStack Overflow
I’m trying to hide and show the password of the user but I’m having a hard time. Here is my markup:

Username:
<input type=”text” class=”form-control” value=”<?…

yuvraj92 2019-02-06 13:29:00
How can i set height for img slider i use bootstrap 4
Mayank_theDevloper 2019-02-06 13:32:02
yuvraj92 2019-02-06 13:29:00
How can i set height for img slider i use bootstrap 4

https://www.w3schools.com/bootstrap4/tryit.asp?filename=trybs_carousel

W3Schools online HTML editorW3Schools
The W3Schools online code editor allows you to edit code and view the result in your browser
yuvraj92 2019-02-06 13:32:19
It not working
yuvraj92 2019-02-06 13:32:42
When i tried to set height it stop sliding
Mayank_theDevloper 2019-02-06 13:33:16
Hmm which slider you use
Mayank_theDevloper 2019-02-06 13:33:33
Bootstrap default
yuvraj92 2019-02-06 13:33:35
Img slider
yuvraj92 2019-02-06 13:33:39
Bootstrap 4
Mayank_theDevloper 2019-02-06 13:37:20
Hmm try with inspect elements any error show when change height
yuvraj92 2019-02-06 13:37:58
Let me check
yuvraj92 2019-02-06 13:45:40
luv_php-949.jpg
Here is code
Mayank_theDevloper 2019-02-06 13:48:42
yuvraj92 2019-02-06 13:45:40
Here is code

Try this : .carousel-item{ height: 200px; } .carousel-item img{ height: 200px; }

yuvraj92 2019-02-06 13:56:21
Thanks man it work👍
Mayank_theDevloper 2019-02-06 13:56:39
Welcome
yuvraj92 2019-02-06 13:57:25
How to make image responsive in img slider
yuvraj92 2019-02-06 13:57:57
Height set krne k baad img sahi nai aa rahi h
Mayank_theDevloper 2019-02-06 13:59:04
Hmm because image size is smaller then height or with use best resolution image
yuvraj92 2019-02-06 14:00:22
I used fully hd img
Mayank_theDevloper 2019-02-06 14:00:37
Use media queries for this
Mayank_theDevloper 2019-02-06 14:00:40
Mayank Joshi:
However, the best way to handle this responsively would be thru the use of media queries like such:

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {}

yuvraj92 2019-02-06 14:00:53
Ohk finally i get solution with img-fluid
Jaydeep Darji 2019-02-06 14:18:39
Yeh Sure
kishankakadiya 2019-02-06 20:05:44
How to download AdSense approval and seo friendly WordPress theme

Please
Help me

Sruthy 2019-02-07 04:42:36
How to update in codeligniter using ajax simply
2019-02-07 06:10:06
Sruthy 2019-02-06 11:25:16
How to make the input fields enable while a edit icon is clicked in codeligniter

$(document).on(‘click’,’#button’, function (){ alert(“test”); return false; })

2019-02-07 06:10:39
Just enable the textbox instead of alert
2019-02-07 06:11:01
Assign I’d to your button for click event
2019-02-07 08:57:40
Hi friends
How to write groupBy query in laravel
Mayank_theDevloper 2019-02-07 09:06:19
2019-02-07 08:57:40
Hi friends
How to write groupBy query in laravel

$users = DB::table(‘users’) ->select(DB::raw(‘count(*) as user_count, status’)) ->where(‘status’, ‘<>’, 1) ->groupBy(‘status’) ->get();

2019-02-07 20:16:07
I want to send image on whatsapp from my website …..Does it possible
Mayank_theDevloper 2019-02-07 20:31:23
2019-02-07 20:16:07
I want to send image on whatsapp from my website …..Does it possible

No its not possible

2019-02-07 20:35:03
2019-02-07 20:16:07
I want to send image on whatsapp from my website …..Does it possible

It is possible you have toh use WhatsApp gateway API

Mayank_theDevloper 2019-02-07 20:38:00
2019-02-07 20:16:07
I want to send image on whatsapp from my website …..Does it possible

You have one option –
https://www.twilio.com/docs/sms/whatsapp/api

Overview of the WhatsApp Business API with TwilioTwilio
Complete Twilio API for WhatsApp overview showing API calls, parameters, message formatting, and common examples and responses.
|