Quote
<?php
$text = '//Admin settings $hi = "hi"; //Sql settings';
$bbcode = '/(\/\/Admin settings)(.*)(\/\/Sql settings)/';
$html = 'omg';
$output = preg_replace($bbcode, $html, $text);
echo "$output ";
?>
$text = '//Admin settings $hi = "hi"; //Sql settings';
$bbcode = '/(\/\/Admin settings)(.*)(\/\/Sql settings)/';
$html = 'omg';
$output = preg_replace($bbcode, $html, $text);
echo "$output ";
?>
however
Quote
<?php
$text = '
//Admin settings
$hi = "hi";
//Sql settings';
$bbcode = '/(\/\/Admin settings)(.*)(\/\/Sql settings)/';
$html = 'omg';
$output = preg_replace($bbcode, $html, $text);
echo "$output ";
?>
$text = '
//Admin settings
$hi = "hi";
//Sql settings';
$bbcode = '/(\/\/Admin settings)(.*)(\/\/Sql settings)/';
$html = 'omg';
$output = preg_replace($bbcode, $html, $text);
echo "$output ";
?>
any ideas?:s
thank you p2l!
henry.
