Uitschakel functie
arjan vrolijk
11/01/2012 16:18:52ik heb een vraag, bestaat er iets zoals een uitschakel functie ik moet iets hebben zoals :
heb ik namelijk nodig voor deze code:
de bedoeling ervan is zeg maar om $diff (die gebonden is aan 2 tijden, en die alles to zelfs over 60 dagen te laten zien, nu wil ik iets maken dat $diff tot 60 dat laat gaan en niet verder, dus ook dat hij al die andere functies afsluit.
Alvast bedankt voor de aandacht
Appriciate:)
heb ik namelijk nodig voor deze code:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
echo "<table><tr>";
echo "<th>Dagen Resterend</th>";
echo "<th>Verval datum</th>";
echo "<th>Licentie van:</th>";
echo "<th>Klant</th>";
echo "<th>Vandaag</th></tr>";
while (odbc_fetch_row($rs))
{
$date1= date("Y-m-d");
$date2=odbc_result($rs,"End Time");
$diff=abs(strtotime($date2) - strtotime($date1));
$iLV=odbc_result($rs,"Title");
$iKlant=odbc_result($rs,"Location");
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
$days = floor(($diff + $years * 365*60*60*24 + $months*30*60*60*24)/ (60*60*24));
echo "<tr><td>$days dagen</td>";
echo "<td>$date2</td>";
echo "<td>$iLV</td>";
echo "<td>$iKlant</td>";
echo "<td>$date1</td></tr>";
}?>
echo "<table><tr>";
echo "<th>Dagen Resterend</th>";
echo "<th>Verval datum</th>";
echo "<th>Licentie van:</th>";
echo "<th>Klant</th>";
echo "<th>Vandaag</th></tr>";
while (odbc_fetch_row($rs))
{
$date1= date("Y-m-d");
$date2=odbc_result($rs,"End Time");
$diff=abs(strtotime($date2) - strtotime($date1));
$iLV=odbc_result($rs,"Title");
$iKlant=odbc_result($rs,"Location");
$years = floor($diff / (365*60*60*24));
$months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
$days = floor(($diff + $years * 365*60*60*24 + $months*30*60*60*24)/ (60*60*24));
echo "<tr><td>$days dagen</td>";
echo "<td>$date2</td>";
echo "<td>$iLV</td>";
echo "<td>$iKlant</td>";
echo "<td>$date1</td></tr>";
}?>
de bedoeling ervan is zeg maar om $diff (die gebonden is aan 2 tijden, en die alles to zelfs over 60 dagen te laten zien, nu wil ik iets maken dat $diff tot 60 dat laat gaan en niet verder, dus ook dat hij al die andere functies afsluit.
Alvast bedankt voor de aandacht
Appriciate:)
PHP hulp
23/11/2024 15:13:03- SanThe -
11/01/2012 16:30:48Arjan vrolijk op 11/01/2012 16:18:52: