Questions tagged [minute]
154 questions
-3
votes
2 answers
Incorrect value is saved to MySQL DB from PHP code
$query="SELECT MINUTE (ETA - STA)
FROM `FlightSchedule` WHERE `flightNum_arr`='".$flightNum_arr."';";
$delay=ejecutar_query($query);
$query = "UPDATE `FlightSchedule`
SET `delay`='".$delay."'
WHERE…

Klausos Klausos
- 15,308
- 51
- 135
- 217
-4
votes
1 answer
How to convert from "MM:SS.MS" to "SS.MS" in PHP?
Please help to convert from "MM:SS.MS" to "SS.MS" in PHP?
Thanks!

KimAl
- 1
- 1
-4
votes
1 answer
Need to add a zero in front of the minute when minute < 10 minutes Python
if EndTimeMinute < 10:
EndTimeMinute = EndTimeMinute
Need to add zero here
Currently the result is just coming out as a single digit. So the time is going out to 1:1. I need to make it so that my code bring out the time as 1:01.

Nicolas Conde
- 3
- 2
-9
votes
3 answers
How i convert String to int?
Here's Code, I am trying to convert Minutes which is String type, to integer type but I am having NumberFormatException error, can anyone help me, how i handle this situation. Thanks.
import java.util.Date;
class DateDemo
{
public static…

Umar Khan
- 1
- 3