This is actual code from some in-house Report Tracker software I got stuck maintaining. It is copied and pasted inline in ~40-50 pages (the whole app probably had <20 methods total when I found it, almost everything was inline logic). The code scared the shit out of me, so my solution was just to stick it in a function somewhere and call that. And this is actually how it is formatted.
if(trim($SearchOrder) != "")
{
$SearchArray = explode(",",$SearchOrder);
if($ProductID != "" && !in_array("ProductID",$SearchArray))
$SearchOrder .= ",ProductID";
if($TypeID != "" && !in_array("TypeID",$SearchArray))
$SearchOrder .= ",TypeID";
if($CustomerID != "" && !in_array("CustomerID",$SearchArray))
$SearchOrder .= ",CustomerID";
if($LocationID != "" && !in_array("LocationID",$SearchArray))
$SearchOrder .= ",LocationID";
$SearchArray = explode(",",$SearchOrder);
}
else
{
if($ProductID != "")
$SearchOrder = "ProductID";
if($TypeID != "")
$SearchOrder = "TypeID";
if($CustomerID != "")
$SearchOrder = "CustomerID";
if($LocationID != "")
$SearchOrder = "LocationID";
$SearchArray = array("$SearchOrder");
}
if($SearchOrder != "")
{
//Build Customer Products
if(in_array("CustomerID",$SearchArray))
{
$CSArray = array();
$res = mysql_query("select * from Locations where CustomerID='$CustomerID'");
while($LRow = mysql_fetch_object($res))
{
$LocSQL .= "LocationID = '$LRow->LocationID' || ";
}
if($LocSQL != "")
{
$LocSQL = "where " . $LocSQL . "1=0";
}
$CustomerIDList = BuildArray("select * from Products $LocSQL","ProductID","Serial");
}
//Build Location Products
if(in_array("LocationID",$SearchArray))
{
$LocationIDList = BuildArray("select * from Products where LocationID = '$LocationID'","ProductID","Serial");
}
//Build ProductType Products
if(in_array("TypeID",$SearchArray))
{
$TypeIDList = BuildArray("select * from Products where TypeID = '$TypeID'","ProductID","Serial");
}
//Build Serial Products
if(in_array("ProductID",$SearchArray))
{
$ProductIDList = BuildArray("select * from Products where ProductID = '$ProductID'","ProductID","Serial");
}
if(count($SearchArray) > 1)
{
$ExecStr = "";
foreach($SearchArray as $SearchItem)
{
$ExecStr .= "array_keys(\$$SearchItem" . "List),";
}
$ExecStr = "\$IntList = array_intersect(".(substr($ExecStr,0,strlen($ExecStr) -1)).");";
}
else
{
$ExecStr = "\$IntList = array_keys(\$".$SearchArray[0]."List);";
}
eval($ExecStr);
}
else
$IntList = array_keys(BuildArray("select * from Products","ProductID","Serial"));
//Build Product DropDowns
$ProdSQL = "";
foreach($IntList as $aProduct)
{
$ProdSQL .= "ProductID = '".substr($aProduct,2,strlen($aProduct))."' or ";
}
$ProdSQL = "where $ProdSQL 1=0";
$ProductBox = array();
$TypeBox = array();
$LocationBox = array();
$CustomerBox = array();
$res = mysql_query("select * from Products $ProdSQL");
while($nProductRow = mysql_fetch_object($res))
{
ArrayPush($ProductBox,"ID".$nProductRow->ProductID,$nProductRow->Serial);
if(!in_array("ID".$nProductRow->TypeID,$TypeBox))
{
$nTypeRow = DBGetRow("ProductTypes","TypeID",$nProductRow->TypeID);
ArrayPush($TypeBox,"ID".$nProductRow->TypeID,$nTypeRow->Name);
}
if(!in_array("ID".$nProductRow->LocationID,$LocationBox))
{
$nLocationRow = DBGetRow("Locations","LocationID",$nProductRow->LocationID);
ArrayPush($LocationBox,"ID".$nProductRow->LocationID,$nLocationRow->Name);
if(!in_array("ID".$nLocationRow->LocationID,$CustomerBox))
{
$nCustomerRow = DBGetRow("Customers","CustomerID",$nLocationRow->CustomerID);
ArrayPush($CustomerBox,"ID".$nLocationRow->CustomerID,$nCustomerRow->Name);
}
}
}
It was after this application that I truly understood why some people despise PHP.