kostenloser Webspace werbefrei: lima-city


MySQL - Auslese fehler

lima-cityForumProgrammiersprachenPHP, MySQL & .htaccess

  1. Autor dieses Themas

    daniel

    daniel hat kostenlosen Webspace.

    Hallo,

    ich hab folgende Probelm,

    Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /www/htdocs/XXXXXX/XXXXX/inc/partykal.inc.php on line 101

    line 101 ist
    while($row1 = mysql_fetch_assoc($ergebnis2))

    bekomme ich jedoch auch nur, wenn ich diesen code einbinde:
    <?php
    $ergebnis1 = "SELECT * FROM cms_fotostory WHERE status = 'freigeschaltet' AND location LIKE '".$slocation1."' AND titel LIKE '%".$search."%' AND datum <= '".$jahr1."-".$monat1."-".$tag1."' GROUP BY datum DESC LIMIT ".$mengeBilder.";";
    		$ergebnis = mysql_query($ergebnis1);
    		$proSpalte = 2;
    		$num = 0;
    
    
    		while($row = mysql_fetch_assoc($ergebnis))
                   {
    	//	echo $anzahl1;
        		$datum = $row['datum'];
    		list ($datum_datum, $datum_uhrzeit) = explode(' ', $datum);
    		$day = substr($datum_datum, 8,2);
    		$month = substr($datum_datum,5,2);
    		$year = substr($datum_datum, 0,4);
    		$format_datum_datum = $day.".".$month.".".$year;
    		
    		$format_datum_uhrzeit = substr($datum_uhrzeit, 0, 5);
        			
    		
         echo '    <!--Partybilder--> <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td class="p_right_10"><div class="div-comment"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td><h3>'.wochentag3($day,$month,$year).'&nbsp;'.$format_datum_datum.'</h3></td>
        <td align="right" class="p_right_10">Partybilder aus <a href="'.$path.'/partybilder.html" class="blue11">blaa</a>, blaa, blaaa</td>
      </tr>
    </table>
    </div></td>
      </tr>
    </table>';
        
        
        echo '<table width="100%" border="0" cellspacing="0" cellpadding="0">'."\n";
    
    $ergebnis_2 = "SELECT * FROM cms_fotostory WHERE status = 'freigeschaltet' AND location LIKE '%' AND titel LIKE '%' AND datum = '".$row['datum']."' ORDER BY datum DESC LIMIT 10;";
    $ergebnis2 = mysql_query($ergebnis_2);
    
    while($row1 = mysql_fetch_assoc($ergebnis2))
                   {
    
        $ergebnis2 = "SELECT COUNT(*) FROM cms_fotostory WHERE status = 'freigeschaltet' AND datum <= '".$row['datum']."' GROUP BY datum DESC LIMIT 20;";
        $result = mysql_query($ergebnis2);
        $anzahl = mysql_fetch_row($result);
        $anzahl1 = $anzahl[0];
    
    
    
    
    
    //Formatierung Datum
    		$datum = $row1['datum'];
    		list ($datum_datum, $datum_uhrzeit) = explode(' ', $datum);
    		$day = substr($datum_datum, 8,2);
    		$month = substr($datum_datum,5,2);
    		$year = substr($datum_datum, 0,4);
    		$format_datum_datum = $day.".".$month.".".$year;
    		
    		$format_datum_uhrzeit = substr($datum_uhrzeit, 0, 5);
    		
    		
    		
    		//Abfrage Anzahl Bilder & Views
    		$abfrage_bilder = "SELECT galerieID, views FROM cms_pictures WHERE galerieID = '".$row1['id']."'";
    		$sql_abfrage_bilder = mysql_query($abfrage_bilder);
    		$anzahl_bilder = mysql_num_rows($sql_abfrage_bilder);
    		while ($row_bilder = mysql_fetch_array($sql_abfrage_bilder))
    		{
    		$views = $row_bilder['views'];
    		$summe_views += $views;
    		}
    
    		// Abfrage Location
    		$ergebnis5 = mysql_query("SELECT * from cms_location where id = '".$row1['location']."';");
      		$row5=mysql_fetch_assoc($ergebnis5);
    		
        $locationlink = $path."/".location_url($row1['location']).".html";
        
        
    
    		
    		// Abfrage Startbild
    		$row_partybild1 = mysql_fetch_assoc(mysql_query("SELECT * FROM cms_pictures where galerieID = '".$row1['id']."' AND startbild = 'ja';"));
    		
    $gbild =$row_partybild1['thumb'];
    		qThumb2($gbild,'http://www.net/upload/galerie/'.$row1['id'].'/sized/','/www/htdocs/XXXXXX/XXXXXX/upload/galerie/',$row1['id'],110);
    		
    		
    		if (($num % $proSpalte) == 0) {
        	// Start
        	echo '<tr>'."\n";
        	}
    		
    		
    		
    		
    		
        
        	if (($num % $proSpalte) != $proSpalte-1) {
        
             
    		echo '<td width="125" align="left" valign="top"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html"><img src="http://www.net/upload/galerie/'.$row1['id'].'/qthumb-110/'.$row_partybild1['thumb'].'" alt="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" width="110" height="110"  border="0" class="img-partypix-home" title="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" ></a></td>
            <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="180">
              <tr>
                <td class="txt-partypix-home"><span class="fs_13"><b>'.wochentag2($day,$month,$year).'&nbsp;'.$format_datum_datum.'</b>('.$anzahl1.')</span></td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><b><a href="'.$locationlink.'" class="blue11">'.$row5['name'].'</a></b>, '.$row5['ort'].'</td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row['ltitel'].'.html">'.$row1['titel'].'</a></td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><span class="fs_9">'.$anzahl_bilder.' Bilder - '.$summe_views.' Views</span></td>
              </tr>
              <tr>
                <td align="right"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row['ltitel'].'.html" title="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" class="blue11"><b>zur Fotostory &raquo;</b></a></td>
              </tr>
              <tr>
                <td align="left" style="padding-left:10px;padding-top:10px;line-height:20px"><a href="http://www.studivz.net/Suggest/Selection/?u=http%3A%2F%2Fwww.net%2Fpartybilder%2F'.sonderzeichen($row5['ort']).'%2F'.sonderzeichen($row5['name']).'%2F'.$datum_datum.'-'.$row1['ltitel'].'.html&amp;desc=Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'&amp;prov=" target="_blank"><img src="'.$path.'/templates/site/icon/meinvz.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://twitter.com/home?status='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/twitter.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://www.facebook.com/share.php?u='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/facebook.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://www.webnews.de/einstellen?url='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/webnews.png" alt="" width="16" height="16" border="0" class="bookmark" ></a></td>
              </tr>
            </table></td>'."\n";
        	
    		
    		} else {
            echo '<td width="125" align="left" valign="top"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html"><img src="http://www.net/upload/galerie/'.$row1['id'].'/qthumb-110/'.$row_partybild1['thumb'].'" alt="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" width="110" height="110"  border="0" class="img-partypix-home" title="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" ></a></td>
            <td valign="top"><table border="0" cellspacing="0" cellpadding="0" width="180">
              <tr>
                <td class="txt-partypix-home"><span class="fs_13"><b>'.wochentag2($day,$month,$year).'&nbsp;'.$format_datum_datum.'</b>('.$anzahl1.')</span></td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><b><a href="'.$locationlink.'" class="blue11">'.$row5['name'].'</a></b>, '.$row5['ort'].'</td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html">'.$row1['titel'].'</a></td>
              </tr>
              <tr>
                <td class="txt-partypix-home"><span class="fs_9">'.$anzahl_bilder.' Bilder - '.$summe_views.' Views</span></td>
              </tr>
              <tr>
                <td align="right"><a href="'.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" title="Partybilder - '.$row1['titel'].' - '.$format_datum_datum.'" class="blue11"><b>zur Fotostory &raquo;</b></a></td>
              </tr>
              <tr>
                <td align="left" style="padding-left:10px;padding-top:10px;line-height:20px"><a href="http://www.studivz.net/Suggest/Selection/?u=http%3A%2F%2Fwww.net%2Fpartybilder%2F'.sonderzeichen($row5['ort']).'%2F'.sonderzeichen($row5['name']).'%2F'.$datum_datum.'-'.$row1['ltitel'].'.html&amp;desc=Partybilder - '.$row['titel'].' - '.$format_datum_datum.'&amp;prov=" target="_blank"><img src="'.$path.'/templates/site/icon/meinvz.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://twitter.com/home?status='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/twitter.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://www.facebook.com/share.php?u='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/facebook.png" alt="" width="16" height="16" border="0" class="bookmark" ></a> <a href="http://www.webnews.de/einstellen?url='.$path.'/partybilder/'.sonderzeichen($row5['ort']).'/'.sonderzeichen($row5['name']).'/'.$datum_datum.'-'.$row1['ltitel'].'.html" target="_blank"><img src="'.$path.'/templates/site/icon/webnews.png" alt="" width="16" height="16" border="0" class="bookmark" ></a></td>
              </tr>
            </table></td>'."\n";
    		
    		
        }
        $num ++; 
        
    	$views = 0;
    	$summe_views = 0;
    }
    	 echo '</table>'."\n";
        echo '';
    
    
    	}
    ?>


    binde ich

    nicht die spalten "funktion" ein, funktioniert es..
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

  3. Hast du schon mal versucht den Inhalt von $ergebnis2 auszugeben und dir Fehlermeldungen anzeigen zu lassen? Ich denke, damit und mit Google kommst du sicher weiter... :wink:

    Beitrag zuletzt geändert: 29.6.2010 21:30:49 von wagnerm
  4. Autor dieses Themas

    daniel

    daniel hat kostenlosen Webspace.

    Problem gelöst, habe die schleifen anderes aufgebaut. ;D trotzdem danke! ;)
  5. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!