|
|
|
$table = $_REQUEST['table'];
$heading = $_REQUEST['heading'];
$id = $_REQUEST['id'];
$table_id_name = $table."_id";
?>
echo $heading;?>
require_once('admin/connection.php');?>
$query="select * from $table where $table_id_name = '$id'";
//echo $query;
$queryresult=mysql_query($query) or die(mysql_error());
while($row=mysql_fetch_array($queryresult))
{
?>
 |
echo stripslashes($row[$table."_text"])?>
//stripslashes(substr($row[$table."_text"],0,800));?>
|
£
0.00 |
}?>
|