替换PHP文档中的单词

时间:2014-09-30 16:23:37

标签: php



$festa = mysql_result($result,$i,"festa");
	  $data = mysql_result($result,$i,"data");
	  $luogo = mysql_result($result,$i,"luogo");
	  $prezzo = mysql_result($result,$i,"prezzo");
	  $dettagli = mysql_result($result,$i,"dettagli");
	  $bus = mysql_result($result,$i,"bus");
	  $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>';
	  echo "  <div class='titlebarpe'>
			 #$numerofesta $festa 
			 <br>
			 </div>
			 <br>
			 <img src='fotoorganizzatori/$organizzatore.png' class='immaginefestape'/>
			 <br>
			
			 <div class='informazionibase'>
			 <p align='left' style='margin-left: 10%;'>
			 <font color='#EBE440' class='soloformimpact'>DATA EVENTO : </font> $data <br>
			 <font color='#EBE440' class='soloformimpact'>LUOGO : </font> $luogo <br>
			 <font color='#EBE440' class='soloformimpact'>COSTO FESTA : </font>$prezzo <br>
			 </div>
			 </p>
			 
			 <div class='altreinformazioni'>
			 
			 
			 <font color='#EBE440' font-size:'+2' class='soloformimpact'> TUTTE LE ALTRE INFORMAZIONI </font><br>
			 <font color='#000000' class='soloformimpact'> <p align='left' style='margin-left: 10%;'> $dettagli </p> </font> <br>
			 </p>
			 </div>
			 
			 
			 ";
			/*PAGINA EVENTO*/ ?>
&#13;
&#13;
&#13;

ereg_replace为什么会工作? 在我的页面,如果我把ereg_replace它没有显示我 我在其他网站搜索来解决这个问题 但我无法找到我的错误 而且我不知道我该怎么做才能解决这个问题,谢谢你,如果你可以帮助我

1 个答案:

答案 0 :(得分:1)

尝试使用str_replace():

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