Rocket
5 TIMES FASTER, MILLION TIMES EASIER WEB DEVELOPMENT
Price
WhizBase is a server-side scripting language for Windows based web servers designed for rapid web development. It is 100% compatible with IIS, Apache and many others. Its syntax is smoothly embedded in your HTML code and dynamically fill your web content from various sources. It’s easy believe us !
Try it!
Its philosophy enables very short learning curve and much faster results using whichever development environment (IDE) you want.
Try it!
Basic tasks, such as publishing
database records on-line, can be accomplished literally in matter of
minutes.
Lease it!
The time and energy consumed doing a job with it is up to five times less than you need to do the same with PHP or .NET.
Buy it!
Rocket fast development - Compare code
NOTE: Both examples must perform the same tasks: connect the database, open
table, read and display 10 records, create links to pages showing other records.
PHP EXAMPLE
<html>
<head>
<title>PHP example</title>
</head>
<body>
<?php
if (isset($_GET[’pageno’])) $CurPage = $_GET[’pageno’]; else $CurPage = 1;
$conn = new COM(’ADODB.Connection’);
$conn->Open(”Provider=Microsoft.Jet.OLEDB.4.0; Data Source=”.getcwd().”\Northwind.mdb”);
$sqlQ = ‘SELECT ProductName, QuantityPerUnit, UnitPrice FROM Products ORDER BY ProductName’;
$rds = new COM(’ADODB.Recordset’);
$rds->Open($sqlQ,$conn,1);
$rowcount = 0;
$TotalRec=$rds->RecordCount;
$RecPerPage=10;
$MaxPage=(int) ($TotalRec/$RecPerPage)+1;
if($CurPage<1) $CurPage=1;
if($CurPage>$MaxPage) $Curpage=$MaxPage;
$CurRec=($CurPage-1)*$RecPerPage;
?>
<table border=”1” cellpadding=”3” cellspacing=”0”>
<tr>
<th>Product Name</th>
<th>Quantity Per Unit</th>
<th>Unit Price</th>
</tr>
<?php
$RowCnt=0;
$rds->Move($CurRec);
while (!$rds->EOF && $RowCnt<10) { ?>
<tr>
<td><?php echo $rds->Fields[’ProductName’]->Value ?></td>
<td><?php echo $rds->Fields[’QuantityPerUnit’]->Value ?></td>
<td><?php echo $rds->Fields[’UnitPrice’]->Value ?></td>
</tr>
<?php $rds->MoveNext();$RowCnt++; ?>
<?php } ?>
</table>
<?php
if($CurPage!=1){
echo “<a href=’nwind.php?pageno=” . ($CurPage-1) . “’>Previous page</a> ”;
}
if($CurPage!=$MaxPage){
echo “ <a href=’nwind.php?pageno=” . ($CurPage+1) . “’>Next page</a>”;
}
$rds->Close();
$conn->Close();
$rds = null;
$conn = null;
?>
</body>
</html>
WHIZBASE EXAMPLE
<!--
[FormFields]
wb_basename=northwind.mdb
wb_rcdset=products
WB_Command=Q
WB_MaxRec=10
wb_order=ProductName
wb_ShowLogo=F
-->
<!--WB_BeginTemplate-->
<html>
<head>
<title>WhizBase example</title>
</head>
<body>
<table border=”1” cellpadding=”3” cellspacing=”0”>
<tr>
<th>Product Name</th>
<th>Quantity Per Unit</th>
<th>Unit Price</th>
</tr>
<!--WB_BeginDetail-->
<tr>
<td>$wbf[ProductName]</td>
<td>$wbf[QuantityPerUnit</td>
<td>$wbf[UnitPrice]</td>
</tr>
<!--WB_EndDetail-->
</table>
$wbprevpage[ ] $wbnextpage[ ]
</body>
</html>
LESS CODE, MORE RESULTS As you can see, WhizBase uses simple syntax to do complex tasks. The results that you get by using it significantly exceed the invested resources.

We strongly recommend that you make your first
steps using our free (no strings attached) trial service. Apply