<HTML>
<TITLE>ProWeb Pricing Summary</TITLE>
</HEAD>

<?php include("/www/jtan/letterhead.html"); ?> 

<?php

  require_once('/usr/share/php/mysql_mysqli.inc.php');

  // open the database as the "pricelist" user

  $db = mysql_connect("elara.jtan.com", "pricelist", "H39AfJBTXAaJFJgPUgrb6h4g");
  mysql_select_db("jtan",$db);

  // This loads the pricelist from the database
  
  $result = mysql_query("SELECT pricelist.*,featureinfo.isbundle FROM pricelist,featureinfo where 
    pricelist.type=featureinfo.type and forsale=1 and
    (offer like \"%members%\" or offer like \"%signup%\" or 
     offer like \"%othersvc%\" or offer like \"%pricelist%\") order by price",$db);
  while ($myrow = mysql_fetch_array($result)) {
    $skus[]=$myrow["sku"];
    $price[$myrow["sku"]]=$myrow["price"];
    $description[$myrow["sku"]]=$myrow["description"];
    $term[$myrow["sku"]]=$myrow["term"];
    $unit[$myrow["sku"]]=$myrow["unit"];
    $termprice[$myrow["sku"]]=$myrow["termprice"];
    $isbundle[$myrow["sku"]]=$myrow["isbundle"];
    $type[$myrow["sku"]]=$myrow["type"];
    $setuptext[$myrow["sku"]]=$myrow["setuptext"];
    $setup[$myrow["sku"]]=$myrow["price"] - $myrow["termprice"];
  }

  $result = mysql_query("SELECT * FROM featureinfo"); 
  while ($myrow = mysql_fetch_array($result)) {
    $ftag[$myrow["type"]]=$myrow["tag"];
    $fdescription[$myrow["type"]]=$myrow["description"];
  }

  $result = mysql_query("SELECT * FROM bundle");
  while ($myrow = mysql_fetch_array($result)) {
    $has[$myrow["type"]][$myrow["hasa"]]=$myrow["quan"];
  }


?>


</HTML>
<HTML>
<HEAD>
<TITLE>JTAN - ProWeb Pricing</TITLE>
</HEAD>
<!--#include virtual="/letterhead.html" -->

<font size="2">
<center><IMG SRC="images/pricing.jpg" ALT="Pricing"><BR><BR></center>

&nbsp;&nbsp;&nbsp;&nbsp;The basic ProWeb account is <?php echo "\$$price[130278]"?> per month. This includes
the following at no extra charge
<ul>
<li>One shell account 
<li>One non-domain web site with PHP and CGI support
<li>1 GByte of storage.
<li>Unlimited DNS and mail support
<li>Unlimited email aliases, mailboxes, forwarders, and autoresponders
<li>Unlimited subdomains and website name aliases 
</ul>

<p><font size="2">
The following enhanced services can be added at at an additional
fee
<ul>
<li><?php echo "\$$price[130279]"?>/mo -- One domain based website
<li><?php echo "\$$price[130256]"?>/mo -- One mySQL Database 
<li><?php echo "\$$price[130250]"?>/mo -- One Domain Registration
<li><?php echo "\$$price[130286]"?>/mo -- One additional GByte of storage
</ul>


&nbsp;&nbsp;&nbsp;&nbsp;<b>All JTAN products are priced in U.S. Dollars</b>. 
We accept checks, bank drafts, money orders, bitcoin, PayPal, Visa, and
Mastercard. Unfortunately we can only accept credit card orders from
U.S. customers. International customers need to pay by check, bank draft, money order, bitcoin, Dwolla, or
Verified PayPal. We highly recommend <A HREF=http://www.bitcoin.org>BitCoin</a>
for international customers. For more information about paying your JTAN
bill, see our <A HREF=/faq/payment.html>payment FAQ</a>.
<HR><BR>

<font size=1>
All prices are subject to change without
notice. <A HREF=/services/fineprint.html>Terms and conditions</a> apply. <BR><BR>
<HR><BR>

<?php include("/www/jtan/proweb/prowebfoot.html"); ?> 
<?php include("/www/jtan/letterfoot.html"); ?> 

</HTML>
