- 1
- 2
- 3
$sqlt="select * from logos where is_delete='0'";
$rest=$db->select_data($sqlt);
$total=count($rest);
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
Всего: 1419
+140.9
$sqlt="select * from logos where is_delete='0'";
$rest=$db->select_data($sqlt);
$total=count($rest);
Подсчет подходящих записей в таблице.
Источник тот же, что и у говнокода 1244.
В $rest возвращается ассоциативный массив.
+150.7
function login() {
// Optional: Show a waiting message in the layer with ID ajax_response
var img_load="<img src=images/wait.gif alt=\"error\" width=\"100\" height=\"100\" /> ";
document.getElementById('login_response').innerHTML = img_load;
// Required: verify that all fileds is not empty. Use encodeURI() to solve some issues about character encoding.
var email = encodeURI(document.getElementById('emailLogin').value);
var psw = encodeURI(document.getElementById('pswLogin').value);
//var rem = encodeURI(document.getElementById('chkrem').value);
var rem = document.getElementById('chkrem').checked;
if(document.getElementById('chkrem').checked==true)
{
rem=1;
}
else
if(document.getElementById('chkrem').checked==false)
{
rem=0;
}
else
{
rem=0;
}
// Set te random number to add to URL request
nocache = Math.random();
// Pass the login variables like URL variable
var act;
act='login.php?email='+email+'&psw='+psw+'&remchk='+rem+'&nocache='+nocache;
//alert(act);
http.open('get', 'login.php?email='+email+'&psw='+psw+'&remchk='+rem+'&nocache='+nocache);
http.onreadystatechange = loginReply;
http.send(null);
}
Взято с одного непонятно кем разработанного зарубежного сайта, который (судя по забагованности и унылости) всё никак не может добраться до релиза.
Код интересен двумя пассажами: строки 13-25 и 33-35
+140.3
if (isset($aCart['color_caption'])) {
if (!isset($aCart['color_name']) && isset($aCart['color_caption'])) {
$aInsert['color_name'] = $aCart[$i]['color_caption'];
$aInsert['color_caption'] = $aCart[$i]['color_caption'];
}
elseif (isset($aCart['color_name']) && !isset($aCart['color_caption'])) {
$aInsert['color_name'] = $aCart[$i]['color_name'];
$aInsert['color_caption'] = $aCart[$i]['color_name'];
}
elseif (!isset($aCart['color_name']) && !isset($aCart['color_caption'])) {
$aInsert['color_name'] = 'N/A';
$aInsert['color_caption'] = 'N/A';
}
else {
$aInsert['color_name'] = $aCart['color_caption'];
$aInsert['color_caption'] = $aCart['color_name'];
}
}
Чем была забита моя голова не известно. Как я такую логику придумал?!
+19.1
int GetControlImplementationsCount()
{
//return 17;
return 18;
}
CControlImplementation* GetControlImplementation(int index)
{
switch (index)
{
case 0: return new CButtonImp();
case 1: return new CFormImp();
case 2: return new CLabelImp();
case 3: return new CHorizontalAlignment();
case 4: return new CVerticalAlignment();
case 5: return new CMouseButton();
case 6: return new CActionEvent();
case 7: return new CMouseEvent();
case 8: return new CWindowEvent();
case 9: return new CCheckBoxImp();
case 10: return new CComboBoxImp();
case 11: return new CListBoxImp();
case 12: return new CRadioButtonImp();
case 13: return new CTextBoxImp();
case 14: return new CItemEvent();
case 15: return new CTextEvent();
case 16: return new CButtonGroupImp();
case 17: return new DialogImpl();
}
return NULL;
}
вот так кладут в ДВО РАН.
−861.8
select
....
if(n.Pinned=1,concat(n.Name,' <img src=/images/icons/897634.gif>'),n.Name) as Name
from
news n
left outer join ....
.....
where
....
Как вам html-верстка в sql запросах?
+140.1
function parce($string)
{//function open
$breaktags=array ("<"," ","=","","т");
for ($pos=0;$pos<strlen($string);$pos++)
{//for text
if (substr($string,$pos,1)=="{" and substr($string,$pos+1,1)=="%")
{// if open symbols finded
$tagopened=1;
while($tagopened==1){//while opened
for($inpos=$pos+2;$inpos<10000;$inpos++){// =)
if ( (substr($string,$inpos,1)=="%" and substr($string,$inpos+1,1)=="}") or in_array(substr($string,$inpos,1),$breaktags)) {break 2;$tagopened=0;}//br
$intag=$intag.substr($string,$inpos,1);
}//for inpos
}//while opened closing
$intag=explode("->",$intag,2);
echo("$intag[0] with $intag[1] action!<br>");
unset($intag);
} else {//if symbols finded
$symbol=substr($string,$pos,1);
echo("$symbol");
}
}//for all text closing
}//function end;
+147
<?php
if ($_SESSION['gde'] != 'tut') {exit();}
?>
Ты не тут? Выйди!
+92
header('Location: '.$_SERVER['REQUEST_URI']);
exit();
die();
на всякий случай :)
+143
if ($pagefir){ // тута мы выдаём списог всех аэродромов данного РЦ нахуй
$icao = sql("SELECT * FROM airport WHERE fir='".$pagefir."' order by ikao desc");
echo '
<h3>Recent articles</h3>
<p>';
while ($airport = mysql_fetch_array($icao))
{
echo '<a href="airport.php?icao='.$airport[ikao].'"><img src="images/strelica2.gif" width="3px" height="5px" alt="" />'.$airport[name].'('.$airport[town].')</a>';
}
echo '<a href="#"><img src="images/strelica2.gif" width="3px" height="5px" alt="" /> URRR Ростов (г. Ростов-на-Дону)</a>
</p>';}
восемь
+147
function sql($query){
/* Переменные для соединения с базой данных */
$hostname = "localhost";
$username = "modx";
$password = "22222";
$dbName = "modx";
/* создать соединение */
mysql_connect($hostname,$username,$password) OR DIE("Не могу создать соединение ");
/* выбрать базу данных. Если произойдет ошибка - вывести ее */
mysql_select_db($dbName) or die(mysql_error());
$res = mysql_query($query);
mysql_close();
}
восемь