← prev | next →
Balaumamaheshwar 2020-08-16 07:56:47
Port number or server name change karo
DhrutikamBar 2020-08-16 08:34:20
Balaumamaheshwar 2020-08-16 07:56:47
Port number or server name change karo
Wo kaise karunga
Sidhant A 2020-08-16 09:48:21
Write port no. In database connection file
Sidhant A 2020-08-16 09:48:49
Like username, passqord,server, database,port
Shivamjha0912 2020-08-16 10:53:36
Can anyone calculat left time between two datetime format like first date is 2020-08-17 18:34:35 and second is date(“Y-m-d H:i:s”)
2020-08-16 10:55:48
Shivamjha0912 2020-08-16 10:53:36
Can anyone calculat left time between two datetime format like first date is 2020-08-17 18:34:35 and second is date(“Y-m-d H:i:s”)
Use datediff function
2020-08-16 10:56:02
And get interval time
Shivamjha0912 2020-08-16 10:56:17
2020-08-16 10:55:48
Use datediff function
I tried but I get increased time
umakantabehera 2020-08-16 15:25:22
Anyone knows what is association and aggregation?
Jurendran Juju 2020-08-16 16:49:15
any one send onclick a card we have to display a card in popup in js
2020-08-16 17:15:18
Hi can we run GPS tracking live location in php
Dizaart Systems 2020-08-16 17:18:10
Is their any one who is having songs collection for Tik-Tok like app?
Please let me know if you have
PatriotPatrice 2020-08-16 17:18:13
You can use PHP only to store the data and read that stored data.
Yo 2020-08-16 18:53:35
What is client session?
Yo 2020-08-16 19:40:13
Please tell me any one
Shivamjha0912 2020-08-16 19:56:16
echo $now = Date(‘Y-m-d H:i:s’);
echo “<br>”;
$datetime1 = new DateTime($now);
$datetime2 = new DateTime(‘2020-08-16 22:40:00’);
$interval = $datetime1->diff($datetime2);
echo $interval->format(‘%i’);
Shivamjha0912 2020-08-16 19:56:25
It’s to simple bro
Shivamjha0912 2020-08-16 19:56:38
I got my answer
Ajay Shah 2020-08-16 20:33:55
Plz send me currunt time php code
Shivamjha0912 2020-08-16 20:48:08
Now()
smruti patra 2020-08-16 20:49:32
How to check Max length of an array ()?
PatriotPatrice 2020-08-16 21:27:25
In theory an array is only limited by memory available to the script. But in fact it is also hard limited where the index reaches PHP_INT_MAX – 1
2020-08-16 23:52:55
Hello my name is Krrish
I’m really on trouble.. Plz help me how I can make h registration page and data store in data base. And also can login .. And login season
2020-08-17 10:00:25
smruti patra 2020-08-16 20:49:32
How to check Max length of an array ()?
Array length function
2020-08-17 10:00:38
2020-08-16 23:52:55
Hello my name is Krrish
I’m really on trouble.. Plz help me how I can make h registration page and data store in data base. And also can login .. And login season
It’s basic
Shubbb 2020-08-17 11:23:55
smruti patra 2020-08-16 20:49:32
How to check Max length of an array ()?
count(array())
Rohit Pahuja 2020-08-17 12:07:49
2020-08-16 23:52:55
Hello my name is Krrish
I’m really on trouble.. Plz help me how I can make h registration page and data store in data base. And also can login .. And login season
ok i will help you
MS 2020-08-17 12:08:52
Any one has idea about sendgrid?
2020-08-17 12:10:41
MS 2020-08-17 12:08:52
Any one has idea about sendgrid?
Yes
Mrdzuza 2020-08-17 12:35:17
Scripterß
R…….j 2020-08-17 13:12:56
Everyone
navRoxy 2020-08-17 13:47:59
in my project
navRoxy 2020-08-17 13:49:49
I want a developer who worked on web socket
PatriotPatrice 2020-08-17 15:43:59
Shubbb 2020-08-17 11:23:55
count(array())
That will be 0. Also I understand that the question was about the maximal lenght of an array in general, not about the size of specific array.
As already mentioned the limit would be at PHP_INT_MAX – 1 becsuse you can’t have an index any higher. Beside that the size of an array is limited by the available memory for that script.
Kaushal_comp 2020-08-17 17:30:39
Anyone can solve the problem realated to fix audio voice in windows 10….and also in cpu back panel not a audio port available…only front panel audio port available…
Also I was referring from youtube video but can’t solve…pls help me….
PatriotPatrice 2020-08-17 17:33:40
Did you try turning it off and on again?
Amit Singh 2020-08-17 20:54:34
how can we use jwt with php anyone knows
2020-08-17 20:57:14
Anyone know how to store image in base64 format in database
Surajsojas 2020-08-17 20:57:59
2020-08-17 20:57:14
Anyone know how to store image in base64 format in database
I know
Surajsojas 2020-08-17 20:58:16
In php
ArpitN10 2020-08-17 20:58:56
ArpitN10 2020-08-08 07:47:13
$path = ‘myfolder/myimage.png’; $type = pathinfo($path, PATHINFO_EXTENSION); $data = file_get_contents($path); $base64 = ‘data:image/’ . $type . ‘;base64,’ . base64_encode($data);
..
2020-08-17 20:59:13
Ok thanks👍
2020-08-18 01:58:08
Hello developers
What are routes used for?…
What exactly is an api
Sidhant A 2020-08-18 05:30:59
Route used for redircting file or filename used in url
PatriotPatrice 2020-08-18 07:04:57
A route routes a request, usually from a speaking URL, to a controller or inline/anonymous function.
An API is in general just an application programming interface. It allows one part of an application to connect to another part of an application or even allows a whole different application B to connect (meaning utilize) application A.
PatriotPatrice 2020-08-18 07:07:28
In PHP APIs are often created using routes, indeed you normally won’t be able to created some sort of RESTful API without a routing mechanism. Well you could still accomplish it with some wild if constellations.
christiantolie 2020-08-18 08:25:25
hei i wanna ask about import and export excel into mysql
PatriotPatrice 2020-08-18 09:33:14
use csv as export format and use phpMyAdmin or similar tool for importing or you can also import it with just a MySQL statement using LOAD DATA INFILE…
← prev | next →