2014-09-30 66 views
1

PHP文件

$festa = mysql_result($result,$i,"festa"); 
 
\t $data = mysql_result($result,$i,"data"); 
 
\t $luogo = mysql_result($result,$i,"luogo"); 
 
\t $prezzo = mysql_result($result,$i,"prezzo"); 
 
\t $dettagli = mysql_result($result,$i,"dettagli"); 
 
\t $bus = mysql_result($result,$i,"bus"); 
 
\t $organizzatore = mysql_result($result,$i,"organizzatore"); 
 
     
 
     $dettagli= ereg_replace("*TITOLO", '<font color="#E3161A">', $dettagli); 
 
     $dettagli= ereg_replace("*/TITOLO", "</font>", $dettagli); 
 
     
 
     
 
     
 
     echo'<div id="latestadded"> <div class="titlebarpub"> #PUBBLICITA </div> <div class="pubblicita3"><script type="text/javascript"> 
 
document.write(\'<s\'+\'cript type="text/javascript" src="http://ad.altervista.org/js.ad/size=728X90/r=\'+new Date().getTime()+\'"></s\'+\'cript>\'); 
 
</script></div></div><br>'; 
 
\t echo " <div class='titlebarpe'> 
 
\t \t \t #$numerofesta $festa 
 
\t \t \t <br> 
 
\t \t \t </div> 
 
\t \t \t <br> 
 
\t \t \t <img src='fotoorganizzatori/$organizzatore.png' class='immaginefestape'/> 
 
\t \t \t <br> 
 
\t \t \t 
 
\t \t \t <div class='informazionibase'> 
 
\t \t \t <p align='left' style='margin-left: 10%;'> 
 
\t \t \t <font color='#EBE440' class='soloformimpact'>DATA EVENTO : </font> $data <br> 
 
\t \t \t <font color='#EBE440' class='soloformimpact'>LUOGO : </font> $luogo <br> 
 
\t \t \t <font color='#EBE440' class='soloformimpact'>COSTO FESTA : </font>$prezzo <br> 
 
\t \t \t </div> 
 
\t \t \t </p> 
 
\t \t \t 
 
\t \t \t <div class='altreinformazioni'> 
 
\t \t \t 
 
\t \t \t 
 
\t \t \t <font color='#EBE440' font-size:'+2' class='soloformimpact'> TUTTE LE ALTRE INFORMAZIONI </font><br> 
 
\t \t \t <font color='#000000' class='soloformimpact'> <p align='left' style='margin-left: 10%;'> $dettagli </p> </font> <br> 
 
\t \t \t </p> 
 
\t \t \t </div> 
 
\t \t \t 
 
\t \t \t 
 
\t \t \t "; 
 
\t \t \t /*PAGINA EVENTO*/ ?>

在更換的話,爲什麼ereg_replace這麼想的工作? 在我的網頁,如果我把ereg_replace它顯示我什麼都沒有 我在其他網站搜索來解決這個問題 但我找不到我的錯誤 ,我不知道我做什麼來解決這個問題,謝謝你,如果你能幫助我

+1

'ereg_'功能棄用(時間長)。 – MisterBla 2014-09-30 16:26:15

+0

我該怎麼辦? – 2014-09-30 16:28:57

回答

1

嘗試str_replace()函數來代替:

$dettagli = str_replace("TITOLO","<font color=\"#E3161A\">", $dettagli); 
$dettagli = str_replace("/TITOLO","</font>", $dettagli);