Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 4
Seite [1]
globalteam-dom


Try to beat me





Beiträge: 115
# Thema - 15.06.2007 um 21:47 Uhr
Ich möchte gern erzeugen un navlist für die Kategorie id "16", wo soll ich ändern?


Original code

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
1. / 2. / ... 
<?php <?php
// ClanSphere 2007 - www.clansphere.net
// $Id: navlist.php 196 2006-08-13 00:53:13Z hajo $

$cs_lang cs_translate('news');

$select 'ne.news_id AS news_id, ne.news_headline AS news_headline, ne.news_time AS news_time';
$public 'ne.news_public > '0' AND cat.categories_access <= '' . $account['access_news'] . ''';
$order 'ne.news_time DESC';
$tables 'news ne INNER JOIN {pre}_categories cat ON ne.categories_id = cat.categories_id';
$cs_news cs_sql_select(__FILE__,$tables,$select,$public,'ne.news_time DESC',0,8);

if(empty(
$cs_news)) {
  echo 
$cs_lang['no_data'];
}
else {
  
$data = array();
  
$run 0;
  foreach (
$cs_news AS $news) {
    
$data['news'][$run]['news_time'] = cs_date('unix',$news['news_time'],1);
    
$short strlen($news['news_headline']) <= 40 $news['news_headline'] : substr($news['news_headline'],0,40) . '...';
    
$data['news'][$run]['news_url'] = cs_url('news','view','id=' $news['news_id']);
    
$data['news'][$run]['news_short'] = cs_secure($short);
    
$data['news'][$run]['news_headline'] = cs_secure($news['news_headline']);
    
$run++;
  }

  echo 
cs_subtemplate(__FILE__,$data,'news','navlist');
}

?> ?>


thx


------------------
ClanSphere - Makes your website a playmate, just dress her

Dom
Inaktiv
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 1 - 15.06.2007 um 22:10 Uhr
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
1. / 2. / ... 
<?php
// ClanSphere 2007 - www.clansphere.net
// $Id: navlist.php 196 2006-08-13 00:53:13Z hajo $

$cs_lang cs_translate('news');

$select 'ne.news_id AS news_id, ne.news_headline AS news_headline, ne.news_time AS news_time';
$public "ne.news_public > '0' AND cat.categories_access <= '" $account['access_news'] . "' AND cat.categories_id = 16";
$order 'ne.news_time DESC';
$tables 'news ne INNER JOIN {pre}_categories cat ON ne.categories_id = cat.categories_id';
$cs_news cs_sql_select(__FILE__,$tables,$select,$public,'ne.news_time DESC',0,8);

if(empty(
$cs_news)) {
  echo 
$cs_lang['no_data'];
}
else {
  
$data = array();
  
$run 0;
  foreach (
$cs_news AS $news) {
    
$data['news'][$run]['news_time'] = cs_date('unix',$news['news_time'],1);
    
$short strlen($news['news_headline']) <= 40 $news['news_headline'] : substr($news['news_headline'],0,40) . '...';
    
$data['news'][$run]['news_url'] = cs_url('news','view','id=' $news['news_id']);
    
$data['news'][$run]['news_short'] = cs_secure($short);
    
$data['news'][$run]['news_headline'] = cs_secure($news['news_headline']);
    
$run++;
  }

  echo 
cs_subtemplate(__FILE__,$data,'news','navlist');
}

?>


------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Inaktiv
|
globalteam-dom
Thread-Ersteller


Try to beat me





Beiträge: 115
# Antwort: 2 - 16.06.2007 um 01:36 Uhr
unglaublich was man alles machen kann mit Clansphere

danke Fr33z3m4n


------------------
ClanSphere - Makes your website a playmate, just dress her

Dom

Inaktiv
|
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 3 - 16.06.2007 um 01:42 Uhr
kein Problem, immer wieder gerne ^^

for your info, which line:

 
1.
1. / 2. / ... 
 $public "ne.news_public > '0' AND cat.categories_access <= '" $account['access_news'] . "' AND cat.categories_id = 16";




------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Zuletzt editiert von Fr33z3m4n ClanSphere Team am 16.06.2007 um 01:44 Uhr (1x Editiert)
Inaktiv
|
Denni


Specialist




Herkunft: Ilsfeld
Beiträge: 1972
# Antwort: 4 - 16.06.2007 um 02:27 Uhr
clansphere - nothing is impossible


------------------
Gruß
Denni

ClanSphere - Makes your website a playmate, just dress her

Inaktiv
|
Antworten: 4
Seite [1]


Sie müssen sich registrieren, um zu antworten.