Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276
Full Statistics
|
Online Users |
There are currently 225 online users. » 0 Member(s) | 224 Guest(s) Google
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,414
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 775
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,546
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,256
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,141
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 1,010
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 985
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,203
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 1,009
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 964
|
|
|
Apple Will Go Down Hill |
Posted by: Ming-Yan - 05-10-2011, 01:59 AM - Forum: General Discussion
- Replies (35)
|
 |
Their computers are over priced so when you buy the new one, you can't buy the new one that comes the next year. Then after you save for it, it's obsolete and you have to buy a new mac.
Eventually, no one will buy macs when they come out and Apple will lose money.
Also, when Steve Jobs leaves Apple [for a lack of a better term], who will support it? The last time he was on leave, the 3GS and iPT3G had the SAME physical look and the Nano was the same with a camera.
Apple can't just make software updates and expect to ship it at full price.
So there is another hit to them.
Lastly, Apple has recently been making CRAP icons. The iTuns icon is now crap, the voice memos icon is crap (4.2+), and the facetime icon is crap (4.3+). Even the mac store icon looks crap.
If Apple products look like crap, no one will buy them. People only buy macs because they look hawt and user friendly.
|
|
|
New Skin |
Posted by: Who - 05-10-2011, 01:31 AM - Forum: Skins
- Replies (3)
|
 |
What do you think?
Even more weird than before ,right?
|
|
|
PHP Tax Calculator: Oppinions? |
Posted by: Chaos - 05-10-2011, 12:48 AM - Forum: Scripting
- Replies (4)
|
 |
handle_calc.php:
<html>
<title>Product Cost Calculator</title>
<style type="text/css" media="screen">
.number { font-weight: bold;}
</style>
</head>
<body>
<?php // Handle_calc.php
//get the values from the $_POST array
ini_set ('display_errors', 1);
$price = $_POST ['price'];
$quantity = $_POST ['quantity'];
$discount = $_POST ['discount'];
$tax = $_POST ['tax'];
$shipping = $_POST ['shipping'];
$payments = $_POST ['payments'];
//Calculate total cost
$total = (($price * $quantity) + $shipping) - $discount;
//calculate tax rate
$taxrate = $tax/100;
$taxrate = $taxrate + 1;
//factor in taxrate
$taxrate = ($tax/100) + 1;
//calculate monthly payments
$monthly = $total / $payments;
//supply proper formatting
$total = number_format ($total, 2);
$monthly = number_format ($monthly, 2);
//print out the results
print "<div>You have selected to purchase:<br />
<span class=\"number\">$quantity</span> widget(s) at <br />
$<span class=\"number"\">$price</span> price each plus a <br />
$<span class=\"number"\">$shipping</span> shipping cost and a <br />
$<span class=\"number"\">$tax</span> percent tax rate.<br />
After your $<span class=\"number"\">$discount</span> discount, the total cost is
$<span class=\"number"\">$total</span>.<br />
Divided over <span class=\"number"\">$payments</span> monthly payments, that would be
$<span class=\"number"\">$monthly</span> each.</p></div>";
?>
</body>
</html>
handle_form.php:
<html>
<body>
<?php //handel_form for feedback
//This page recieves the data from feedback.html
//it will recieve: title, name, and submit in $_POST.
ini_set ('display_errors', 1);
$title = $_POST['title'];
$name = $_POST ['name'];
$response = $_POST ['response'];
$comments = $_POST ['comments'];
<p>Thanks, $title $name for your comments.</p>
<p>you stated that you found this example to be '$response' and added: <br />$comments<p>
?>
</body>
</html>
|
|
|
|