Mass update

This commit is contained in:
2022-12-30 21:03:37 +02:00
parent 7a5dfd22a7
commit e9ec7eb2f2
172 changed files with 14838 additions and 35914 deletions
+20
View File
@@ -0,0 +1,20 @@
<?
$bp = 75;
if( isset($_GET['bp']) ) {
$bp = round((int)$_GET['bp']);
}
$pgd = mysql_fetch_array(mysql_query('SELECT * FROM `library_content` WHERE `id` = "'.mysql_real_escape_string($bp).'" LIMIT 1'));
if( isset($pgd['id']) ) {
echo '<div style="padding:10px;">';
if( $bp != 75 ) {
echo '<h3><a href="https://new-combats.com/buy/">Óñëóãè</a> &nbsp; &raquo; &nbsp; '.$pgd['title'].'</h3><br>';
}else{
echo '<h3>'.$pgd['title'].'</h3><br>';
}
echo $pgd['text'];
echo '</div>';
}else{
echo 'Ñòðàíèöà íå íàäåíà!';
}
?>