Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 2
Seite [1]
RaPiD


Geekboy




Beiträge: 1192
# Thema - 02.12.2011 um 19:15 Uhr
Hallo CSP-Team,

würde gerne was wissen wegen (Besucher Gestern) im Counter Modul.

Wie mach ich aus dem hier >>> 1422 das hier >>> 1.422

Danke für die Hilfe. :-)

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
1. / 2. / ... 
<?php 
// ClanSphere 2010 - www.clansphere.net
// $Id$

$tday cs_datereal('d');
$tmonth cs_datereal('n');
$tyear cs_datereal('Y');
$daystart mktime(0,0,0,$tmonth,$tday,$tyear);
$daystart cs_timediff($daystart1);

$yes_start $daystart 86400;
$yes_stop $daystart 1;

if (
$tday == 1){
  
$op_counter cs_sql_option(__FILE__'counter');
  echo 
$op_counter['count_lastday'];
} else {
  
$where 'count_time > \'' $yes_start '\' AND count_time < \'' $yes_stop '\'';
  echo 
cs_sql_count(__FILE__,'count',$where,0,',','.');
}
Inaktiv
Miraculix


Going for pro




Herkunft: Füssen
Beiträge: 429
# Antwort: 1 - 02.12.2011 um 19:43 Uhr
Versuchs mal mit:
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
1. / 2. / ... 
<?php 
// ClanSphere 2010 - www.clansphere.net
// $Id$

$tday cs_datereal('d');
$tmonth cs_datereal('n');
$tyear cs_datereal('Y');
$daystart mktime(0,0,0,$tmonth,$tday,$tyear);
$daystart cs_timediff($daystart1);

$yes_start $daystart 86400;
$yes_stop $daystart 1;

if (
$tday == 1){
  
$op_counter cs_sql_option(__FILE__'counter');
  echo 
number_format($op_counter['count_lastday'], 0'''.');
} else {
  
$where 'count_time > \'' $yes_start '\' AND count_time < \'' $yes_stop '\'';
  echo 
number_format(cs_sql_count(__FILE__,'count',$where,0,',','.'), 0'''.');
}
Würd mir da so spontan einfallen


------------------
greeetz Miraculix

Band-Page -> www.muddleheaded-scum.de

Inaktiv
|
RaPiD
Thread-Ersteller


Geekboy




Beiträge: 1192
# Antwort: 2 - 02.12.2011 um 21:44 Uhr
Herzlichen dank hat funktioniert.

@closed


Inaktiv
|

Dieses Thema wurde von palle ClanSphere Team PM geschlossen.

Antworten: 2
Seite [1]