Hallo,
will den angezeigten Text den ich parse verkürzen und habe unten im Code dazu siehe auch unten folgenden Code benutzt:
$text = $aInfo['lib'];
if(strlen($text)>10) $output=substr($text,0,10)."...";
else $output=$text
echo $output;
Mir wird folgender Fehler angzeigt
Parse error: syntax error, unexpected T_ECHO in /mnt/cr1/06/593/00000013/htdocs/testmp3.php on line 88
Linie 88 ist: echo $output;
Was habe ich falsch gemacht?
Gesamtseite
<?php
include 'lib_xml.php';
$a = 'www';
$h = '0';
//logo example
$sFile = 'http://www.xxxx.xe;
$aArray = MPxmlParse($sFile); // parsing of the file
$aRess = $aArray['ressources']; //array with all content
$aInfos = $aArray['infos']; //array with all informations (max_page, total_results...)
foreach ($aRess as $aInfo) {
$lib = trim(stripslashes($aInfo['lib']));
if (strlen($lib) > 1){
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><img src="http://www.bildmitteilungen-net.de/k.gif" alt="'.$aInfo['lib'].'" border="0" bordercolor="FFFFFF" /></a>';
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><font size="-1"><text width="5"><ins>'.$aInfo['lib'].'</ins><br></br>';
}
}?>
</td><td with="20">
<?php
$sFile = 'http://www.x.xe';
$aArray = MPxmlParse($sFile); // parsing of the file
$aRess = $aArray['ressources']; //array with all content
$aInfos = $aArray['infos']; //array with all informations (max_page, total_results...)
foreach ($aRess as $aInfo) {
$lib = trim(stripslashes($aInfo['lib']));
if (strlen($lib) > 1){
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><img src="http://www.bildmitteilungen-net.de/k.gif" alt="'.$aInfo['lib'].'" border="0" bordercolor="FFFFFF" /></a>';
$text = $aInfo['lib'];
if(strlen($text)>10) $output=substr($text,0,10)."...";
else $output=$text
echo $output;
}
}?>
will den angezeigten Text den ich parse verkürzen und habe unten im Code dazu siehe auch unten folgenden Code benutzt:
$text = $aInfo['lib'];
if(strlen($text)>10) $output=substr($text,0,10)."...";
else $output=$text
echo $output;
Mir wird folgender Fehler angzeigt
Parse error: syntax error, unexpected T_ECHO in /mnt/cr1/06/593/00000013/htdocs/testmp3.php on line 88
Linie 88 ist: echo $output;
Was habe ich falsch gemacht?
Gesamtseite
<?php
include 'lib_xml.php';
$a = 'www';
$h = '0';
//logo example
$sFile = 'http://www.xxxx.xe;
$aArray = MPxmlParse($sFile); // parsing of the file
$aRess = $aArray['ressources']; //array with all content
$aInfos = $aArray['infos']; //array with all informations (max_page, total_results...)
foreach ($aRess as $aInfo) {
$lib = trim(stripslashes($aInfo['lib']));
if (strlen($lib) > 1){
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><img src="http://www.bildmitteilungen-net.de/k.gif" alt="'.$aInfo['lib'].'" border="0" bordercolor="FFFFFF" /></a>';
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><font size="-1"><text width="5"><ins>'.$aInfo['lib'].'</ins><br></br>';
}
}?>
</td><td with="20">
<?php
$sFile = 'http://www.x.xe';
$aArray = MPxmlParse($sFile); // parsing of the file
$aRess = $aArray['ressources']; //array with all content
$aInfos = $aArray['infos']; //array with all informations (max_page, total_results...)
foreach ($aRess as $aInfo) {
$lib = trim(stripslashes($aInfo['lib']));
if (strlen($lib) > 1){
echo '<a href="'. $aInfo['url_download'].'" target="_blank"><img src="http://www.bildmitteilungen-net.de/k.gif" alt="'.$aInfo['lib'].'" border="0" bordercolor="FFFFFF" /></a>';
$text = $aInfo['lib'];
if(strlen($text)>10) $output=substr($text,0,10)."...";
else $output=$text
echo $output;
}
}?>
Kommentar