savas155
Narys
Buldozeris
Pranešimai: 296
Įstojęs: 2009 Gru. 17 20:12:55
v7 versija mano, reik kad ant news_cats.php nerodytų kategorijų paveiksliuku. ir viskas, kokią vietą nutrinti?
Martynas.
Narys
Kapitonas
Pranešimai: 568
Įstojęs: 2009 Lie. 16 13:07:23
Tai gal to failo kodą įdėk? Ar čia iš lempos žinot mum? Simboliai
qrydz
Narys
Buldozeris
Pranešimai: 277
Įstojęs: 2010 Bir. 9 13:06:39
Susirask šią eilutę:
echo "<tr>\n <td width='150' class='tbl1' style='vertical-align:top'><!--news_cat_image--><img src='" . get_image( "nc_" . $data [ 'news_cat_name' ] ) . "' alt='" . $data [ 'news_cat_name' ] . "' /><br /><br />\n " ;
Ištrink ją , jei nepadės ir išmes "error", tai rašyk pabandysiu kitaip padaryti.Google.lt - Tai vis dėlto... gal paieškosi?Redagavo
qrydz 2011 Bir. 9 20:06:56
savas155
Narys
Buldozeris
Pranešimai: 296
Įstojęs: 2009 Gru. 17 20:12:55
Kai ištrinu šita eilute susi*isa vaizdas makalyne gaunas, o man reik kad viskas stulpeliuose gražiai liktu neišsitampytu tik paveiklsiuko nerodytu.
va kodas:
<?php
/*-------------------------------------------------------+
| <span style="border-bottom: 1px dotted black;">PHP</span>-Fusion Content Management System
| Copyright (C) 2002 - 2011 Nick Jones
| <a href='http://www.php-fusion.co.uk/' target='_blank'><span style='color:005C5B'>http://www.php-fusion.co.uk/</span></a>
+--------------------------------------------------------+
| Filename: news_cats.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at <a href='http://www.gnu.org/licenses/agpl.html.' target='_blank'><span style='color:005C5B'>www.gnu.org/licenses/agpl.html.</span></a> Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once "maincore.php" ;
require_once THEMES. "templates/header.php" ;
include LOCALE. LOCALESET. "news_cats.php" ;
add_to_title( $locale [ 'global_200' ] . $locale [ '400' ] ) ;
opentable( $locale [ '400' ] ) ;
if ( isset ( $_GET [ 'cat_id' ] ) && isnum( $_GET [ 'cat_id' ] ) ) {
$res = 0 ;
$result = dbquery( "SELECT news_cat_name FROM " . DB_NEWS_CATS. " WHERE news_cat_id='" . $_GET [ 'cat_id' ] . "'" ) ;
if ( dbrows( $result ) || $_GET [ 'cat_id' ] == 0 ) {
$data = dbarray( $result ) ;
$rows = dbcount( "(news_id)" , DB_NEWS, "news_cat='" . $_GET [ 'cat_id' ] . "' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0'" ) ;
if ( $rows ) {
$res = 1 ;
echo "<!--pre_news_cat--><table cellpadding='0' cellspacing='1' width='100%' c lass='tbl-border'>\n " ;
if ( $_GET [ 'cat_id' ] != 0 ) {
echo "<tr>\n <td width='150' class='tbl1' style='vertical-align:top'><!--news_cat_image--><img src='" . get_image( "nc_" . $data [ 'news_cat_name' ] ) . "' alt='" . $data [ 'news_cat_name' ] . "' /><br /><br />\n " ;
echo "<strong>" . $locale [ '401' ] . "</strong> " . $data [ 'news_cat_name' ] . "<br />\n <strong>" . $locale [ '402' ] . "</strong> $rows </td>\n " ;
echo "<td class='tbl1' style='vertical-align:top'>\n " ;
} else {
echo "<tr>\n <td width='150' class='tbl1' style='vertical-align:top'>" . $locale [ '403' ] . "<br />\n " ;
echo "<strong>" . $locale [ '401' ] . "</strong> $rows </td>\n <td class='tbl1' style='vertical-align:top'><!--news_cat_news-->\n " ;
}
$result2 = dbquery( "SELECT news_id, news_subject FROM " . DB_NEWS. " WHERE news_cat='" . $_GET [ 'cat_id' ] . "' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0' ORDER BY news_datestamp DESC" ) ;
while ( $data2 = dbarray( $result2 ) ) {
echo THEME_BULLET. " <a href='news.php?readmore=" . $data2 [ 'news_id' ] . "'>" . $data2 [ 'news_subject' ] . "</a><br />\n " ;
}
echo "</td>\n </tr>\n <tr>\n <td colspan='2' class='tbl1' style='text-align:center'>" . THEME_BULLET. " <a href='" . FUSION_SELF. "'>" . $locale [ '406' ] . "</a>" ;
echo "</td>\n </tr>\n </table><!--sub_news_cat-->\n " ;
}
}
if ( ! $res ) { redirect( FUSION_SELF) ; }
} else {
$res = 0 ;
$result = dbquery( "SELECT news_cat_id, news_cat_name FROM " . DB_NEWS_CATS. " ORDER BY news_cat_id" ) ;
if ( dbrows( $result ) ) {
echo "<!--pre_news_cat_idx--><table cellpadding='0' cellspacing='1' width='100%' c lass='tbl-border'>\n " ;
while ( $data = dbarray( $result ) ) {
$rows = dbcount( "(news_id)" , DB_NEWS, "news_cat='" . $data [ 'news_cat_id' ] . "' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0'" ) ;
echo "<tr>\n <td width='150' class='tbl1' style='vertical-align:top'><!--news_cat_image--><img src='" . get_image( "nc_" . $data [ 'news_cat_name' ] ) . "' alt='" . $data [ 'news_cat_name' ] . "' /><br /><br />\n " ;
echo "<strong>" . $locale [ '401' ] . "</strong> " . $data [ 'news_cat_name' ] . "<br />\n <strong>" . $locale [ '402' ] . "</strong> $rows </td>\n " ;
echo "<td class='tbl1' style='vertical-align:top'><!--news_cat_news-->\n " ;
if ( $rows ) {
$result2 = dbquery( "SELECT news_id, news_subject FROM " . DB_NEWS. " WHERE news_cat='" . $data [ 'news_cat_id' ] . "' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0' ORDER BY news_datestamp DESC LIMIT 10" ) ;
while ( $data2 = dbarray( $result2 ) ) {
echo THEME_BULLET. " <a href='news.php?readmore=" . $data2 [ 'news_id' ] . "'>" . $data2 [ 'news_subject' ] . "</a><br />\n " ;
}
if ( $rows > 10 ) { echo "<div style='text-align:right'>" . THEME_BULLET. " <a href='" . FUSION_SELF. "?cat_id=" . $data [ 'news_cat_id' ] . "'>" . $locale [ '405' ] . "</a></div>\n " ; }
} else {
echo THEME_BULLET. " " . $locale [ '404' ] . "\n " ;
}
echo "</td>\n </tr>\n " ;
}
$res = 1 ;
}
$result = dbquery( "SELECT * FROM " . DB_NEWS. " WHERE news_cat='0' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0' ORDER BY news_datestamp DESC LIMIT 10" ) ;
if ( dbrows( $result ) ) {
if ( $res == 0 ) { echo "<table cellpadding='0' cellspacing='1' width='100%' c lass='tbl-border'>\n " ; }
$nrows = dbcount( "(news_id)" , DB_NEWS, "news_cat='0' AND " . groupaccess( 'news_visibility' ) . " AND (news_start='0'||news_start<=" . time ( ) . ") AND (news_end='0'||news_end>=" . time ( ) . ") AND news_draft='0'" ) ;
echo "<tr>\n <td width='150' class='tbl1' style='vertical-align:top'>" . $locale [ '403' ] . "<br />\n " ;
echo "<strong>" . $locale [ '402' ] . "</strong> $nrows </td>\n <td class='tbl1' style='vertical-align:top'>\n " ;
while ( $data = dbarray( $result ) ) {
echo THEME_BULLET. " <a href='news.php?readmore=" . $data [ 'news_id' ] . "'>" . $data [ 'news_subject' ] . "</a><br />\n " ;
}
$res = 1 ;
if ( $nrows > 10 ) { echo "<div style='text-align:right'>" . THEME_BULLET. " <a href='" . FUSION_SELF. "?cat_id=0'>" . $locale [ '405' ] . "</a></div>\n " ; }
echo "</td>\n </tr>\n " ;
}
if ( $res == 1 ) {
echo "</table><!--sub_news_cat_idx-->\n " ;
} else {
echo "<div style='text-align:center'><br />\n " . $locale [ '407' ] . "<br /><br />\n </div>\n " ;
}
}
closetable( ) ;
require_once THEMES. "templates/footer.php" ;
?>
qrydz
Narys
Buldozeris
Pranešimai: 277
Įstojęs: 2010 Bir. 9 13:06:39
Jeigu tu nori, kad ant naujienų kategorijų nerodytų paveiksliukų, tai nueini į administraciją ir pasirenki 'Naujienų kategorijos', tada visas redaguoji ir ištrini logo arba duomenų bazėje susirandi lentelę ir išvalai viską iš jos.Google.lt - Tai vis dėlto... gal paieškosi?
Peršokti į forumą:
Žaliems
Nebeegzistuojančios svetainės
Bendri PHP-F klausimai
WordPress
Kiti PHP, HTML, MySQL klausimai
Expert PHP, MySQL klausimai
Kitos TVS
C#, Python, Java, JS, C++ klausimai
Naujų modų pristatymai
Mods, Panels & Infusions
Themes
Dalinuosi, dovanoju!
Jūsų saitai
Klausimai apie domenus ir hostingus
VPS/DS serverių konfigūravimas ir valdymas
Viskas apie skaitliukus, top'us ir lankomumą
Dizaino konkursai
Parduodu - perku dizainą, banerį
Parduodu - perku - keičiuosi reklama
Parduodu - perku domeną, tinklapį
Siūlau - ieškau hostingo/VPS serverio
Parduodu - perku skriptą, modifikaciją, tvs
Socialiniai tinklai - Facebook ir kiti
Legalus verslas, teisiniai klausimai
Visa kita kas susiję su darbu ir pinigais
LTStartups.com - Lietuvos startuolių bendruomenė
Off-Topic diskusijos
IT naujienos
Portalo informacija
Narių pasiūlymai
Geležis ir programinė įranga
Grafika
Out Of Place
Su e-verslu nesusijęs darbas ir prekyba
Dalinuosi, dovanoju!