Hallo,
Es gibt ja viele schlauen leute unter euch!
könnte mir jemand hier bei helfen?
http://prntscr.com/e0mh5s
Hab alles versucht aber es geht ned weg
Hallo,
Es gibt ja viele schlauen leute unter euch!
könnte mir jemand hier bei helfen?
http://prntscr.com/e0mh5s
Hab alles versucht aber es geht ned weg
Schickmal den Code in der Liste.php
Welche PHP Version hast du?
Du brauchst PHP 5.4
Welche PHP Version hast du?
wo sieht man des?
wo sieht man des?
Eine PHP Datei erstellen (z.B. test.php) dann ''<?php phpinfo (); ?>''
Eine PHP Datei erstellen (z.B. test.php) dann ''<?php phpinfo (); ?>''
PHP Version 5.5.21 |
Schickmal den Code in der Liste.php
<?php
$retro_infos = array(
'Jabbo.cc' => array(
'name' => 'Jabbo.cc',
'link' => 'http://jabbo.cc/index.php',
'slogan' => 'Dein, mein, unser Jabbo!',
'land' => 'Deutsch'
),
'Habbo.st' => array(
'name' => 'Habbo.st',
'link' => 'http://habbost.us/index.php',
'slogan' => 'United we stand',
'land' => 'Deutsch'
),
'Hubba.cc' => array(
'name' => 'Hubba.cc',
'link' => 'http://hubba.cc/index.php',
'slogan' => 'Das Original. Seit 2006',
'land' => 'Deutsch'
),
'Funhotel.cc' => array(
'name' => 'Funhotel.cc',
'link' => 'http://funhotel.cc/index.php',
'slogan' => 'EIN VERRÜCKTER ORT MIT TOLLEN LEUTEN',
'land' => 'Deutsch'
),
'Habbo.cx' => array(
'name' => 'Habbo.cx',
'link' => 'http://habbo.cx/index.php',
'slogan' => 'Die kostenlose Community für Jugendliche!',
'land' => 'Deutsch'
),
/*'Lemonhotel.eu' => array(
'name' => 'Lemonhotel.eu',
'link' => 'https://lemonhotel.eu/index.php',
'slogan' => '',
'land' => 'Deutsch'
)*/
);
$retro_userzahlen = array();
$retros_string = '';
$j = 0;
function retros_adden(){
global $retro_userzahlen, $retro_infos;
foreach($retro_infos as $retro => $wert){
array_push($retro_userzahlen, (isset(get_meta_tags($retro_infos[$retro]['link'])['rcuser'])) ? get_meta_tags($retro_infos[$retro]['link'])['rcuser'] : get_meta_tags($retro_infos[$retro]['link'])['rccount']);
}
}
function retros_sortieren(){
global $retro_userzahlen, $retro_infos;
array_multisort($retro_userzahlen, SORT_DESC, $retro_infos, SORT_DESC);
}
retros_adden();
retros_sortieren();
foreach($retro_infos as $retro2 => $retro){
$retros_string .= '<section class="retro"><section class="land" style="background: url(./public/img/'.$retro['land'].'.png); width: 16px; height: 11px; float: right;"></section><section class="usercount">'.$retro_userzahlen[$j].'</section>'
. '<section class="logo" style="background: url(./public/logo/'.$retro['name'].'.png) 50% 50% no-repeat;"></section>'
. '<section class="hotelname">'.$retro['name'].'</section>'
. '<section class="slogan">'.$retro['slogan'].'</section>'
. '<a href="http://'.$retro['name'].'" target="_blank" class="info">Check-In to the Hotel</a>'
. '</section>';
$j++;
}
?>
<?php echo $retros_string; ?>
Alles anzeigen
PHP Version 5.5.21
Probier es mal mit PHP 5.6.21
Probier es mal mit PHP 5.6.21
Wie geht des? kenne mich ned so aus (Hoster ist Bplaced)
Wie geht des? kenne mich ned so aus (Hoster ist Bplaced)
Musst du jemand anderes fragen, kenne mich nicht mit Bplaced aus, sorry.
Musst du jemand anderes fragen, kenne mich nicht mit Bplaced aus, sorry.
wo mit denn? kann immer ümsteigen will endlich ne retrobase aufmachen xD
http://stackoverflow.com/questions/8656442/php-get-meta-tags
Da ist aufjedenfall ein Fehler drin. Ich bin mir ziehmlich sicher, mit den Sachen unten, kann dir jemand weiterhelfen der sich gut mit PHP auskennt.
Und an alle anderen, es liegt nicht immer alles an der Version 5.5 ist einer der höheren Versionen und es sollte mit allen codes funktionieren.
The answer you need is right in the warning output you included...note the space after the URL:
Warning: get_meta_tags(http://www.example.com ) [function.get-meta-tags]
If you add:
$links = trim($links);
Your code will start working.
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!