<?
require_once "connectdb.php";
$sql = "select * from checktexttb";
$query = mysql_query($sql) or die(mysql_error());
//while($row = mysql_fetch_array($query))
$arr = array();
while($row=mysqli_fetch_assoc($query)){
$arr[$row['txt']] = $row['txt1'];
}
$mess = "A group of flightless birds, penguins are of many types found in P1 the Southern Hemisphere. This Buzzle article lists some quick facts about some P2 popular penguin species.";
$message = str_replace(array_keys($arr), $arr, $mess);
echo "$message";
?>
<?
require_once "connectdb.php";
$sql = "select * from checktexttb";
$query = mysql_query($sql) or die(mysql_error());
$arr = array();
while($row=mysql_fetch_array($query)){
$arr[$row['txt']] = $row['txt1'];
}
$mess = "A group of flightless birds, penguins are of many types found in P1 the Southern Hemisphere. This Buzzle article lists some quick facts about some P2 popular penguin species.";
$message = str_replace(array_keys($arr), $arr, $mess);
echo "$message";
?>