AllAPI dotNET Class Library

Welcome to the AllAPI dotNET Class Library. This is a collection of useful classes, written for the .NET runtime. Feel free to use these classes in your own project, but make sure you read the License Agreements of each class before doing so.
Also visit Mentalis.org for other .NET classes.

Select a category to continue:

\n"; echo "
\n"; echo "

\n"; for ($tel = 0; $tel < $rowcnt; $tel++) { $catinfo = mysql_fetch_array($result); echo "".htmlentities($catinfo[0])."
\n"; } echo "
"; echo "All Classes
"; echo "Newest Classes
"; echo "Most Popular Classes
"; echo "

\n"; echo "
\n"; mysql_free_result($result); unset($result); } // $category of $author is gedefinieerd } else if($category == 'Most Popular Classes') { echo "

Most Popular Classes

"; $result = @mysql_query("SELECT id,COUNT(DISTINCT ip) As count FROM dotnet_tophits GROUP BY name ORDER BY count DESC LIMIT 0, 10"); if ($result == 0) { echo "Database SELECT Error"; } else { while ($dlinfo = mysql_fetch_array($result)) { $infotext = mysql_query("SELECT id,name,date,smalldesc,language FROM dotnet_classes WHERE dlindex='$dlinfo[0]'"); $clsinfo = mysql_fetch_array($infotext); echo "

$clsinfo[1] [$clsinfo[2]][$clsinfo[4]]
  $clsinfo[3]

"; } } echo "

 

Back to the category index

"; } else { if ($author != '') { $result = @mysql_query("SELECT id,name,date,smalldesc,language FROM dotnet_classes WHERE status='0' AND authorid='$author'"); } elseif ($category == 'All Classes') { echo "

All Classes

"; $result = @mysql_query("SELECT id,name,date,smalldesc,language FROM dotnet_classes WHERE status='0'"); } else if($category == 'Newest Classes') { echo "

Newest Classes

"; $result = @mysql_query("SELECT id,name,date,smalldesc,language FROM dotnet_classes WHERE status='0' ORDER BY timestamp DESC LIMIT 0,10"); } else { echo "

Category ".htmlentities($category)."

"; $result = @mysql_query("SELECT id,name,date,smalldesc,language FROM dotnet_classes WHERE status='0' AND category='$category' ORDER BY timestamp DESC"); } if ($result==0) { echo "Database SELECT Error"; } else { $rowcnt = mysql_num_rows($result); for ($tel = 0; $tel < $rowcnt; $tel++) { $clsinfo = mysql_fetch_array($result); echo "

$clsinfo[1] [$clsinfo[2]][$clsinfo[4]]
  $clsinfo[3]

"; } mysql_free_result($result); unset($result); } echo "

 

Back to the category index

"; } } mysql_close($db); unset($db); ?>