- 1
background-repeat: no-repeat no-repeat;
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 4
+146
background-repeat: no-repeat no-repeat;
css css
+129
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css" media="all">@import url(/templates/def_spez-predlojenie/css/cat_menu.css);</style>
<style type="text/css" media="all">
@import url(/templates/def_spez-predlojenie/css/engine.css);
.стиль4 {font-size: 16px}
.стиль6 {font-size: 24px}
.стиль8 {font-size: 20px}
.стиль10 {font-size: 18px}
.стиль12 {font-family: Georgia, "Times New Roman", Times, serif}
.стиль14 {font-family: Verdana, Arial, Helvetica, sans-serif}
.стиль16 {font-size: 14px}
.стиль18 {font-size: 12px}
.стиль20 {font-family: Geneva, Arial, Helvetica, sans-serif}
.стиль21 {font-family: tahoma; font-weight: bold; font-size: 12px; }
.стиль22 {font-family: tahoma}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
...
−123
# Обработка нажатия клавиш
# Если нажата кнопка СОХРАНИТЬ
if(CGI::param('sub_data_save'))
{
if(CGI::param('content')){ $content=CGI::param('content'); }
$content=~s/'/\\'/g;
$dbh->do("update public.m_content set content='$content' where id=70");
# Зафиксировали изменения
$dbh->commit;
# формируем страницу
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content,$www{'path'},'/turfirm.php');
# подгонка остальных страниц
# новости
$sql = "select content from public.m_content where \"id\"=20";
$sth=$dbh->prepare($sql);
$sth->execute;
($content0)=$sth->fetchrow_array;
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/news.php');
# Корпаративным клиентам
$sql = "select content from public.m_content where \"id\"=60";
$sth=$dbh->prepare($sql);
$sth->execute;
($content0)=$sth->fetchrow_array;
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/cor_clients.php');
# Главная
$sql = "select content from public.m_content where \"id\"=10";
$sth=$dbh->prepare($sql);
$sth->execute;
($content0)=$sth->fetchrow_array;
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/index.php');
# Контакты
$sql = "select content from public.m_content where \"id\"=30";
$sth=$dbh->prepare($sql);
$sth->execute;
($content0)=$sth->fetchrow_array;
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/contact.php');
# Базы
$sql = "select content from public.m_content where \"id\"=40";
$sth=$dbh->prepare($sql);
$sth->execute;
($content0)=$sth->fetchrow_array;
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/centre.php');
# Бронирование
$content0="<iframe width=100% scrolling='auto' height=100% frameborder=0 src='/cgi-bin/res.cgi' ></iframe>";
md::tools->create_page($www{'main_template'},"<#CONTENT#>",$content0,$www{'path'},'/reservation.php');
}
Из админки одного сайта
(админка - один сплошной перл)
+161
foreach ($links as $key => $url) {
$urlp=parse_url($url);
$ch=1;
if (substr($url,-1)!='/') {unset($links[$key]); $ch=0;};
if (strpos($url, '#')||$url==$begin_url||$url==substr($begin_url,0,-1)) {unset($links[$key]); $ch=0;};
if ($ch){
if ($urlp['host']!=$begin_host) {unset($links[$key]); $ch=0;};
}
if ($ch){
foreach ($exurl as $k => $ext) {
if ((strpos($urlp['path'], $ext))) unset($links[$key]);
}
}
}
Говнокод?