RE: Arrays past to functions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I tried using that, but all I get is these errors:

Notice: Undefined variable: amount in C:\xampp\htdocs\test3.php on line
16

Fatal error: Function name must be a string in C:\xampp\htdocs\test3.php
on line 11

Jacob Bergman
Network Technician
Pullman School District #267
(509) 432-4012
jbergman@xxxxxxxxxxxxxxxxx

-----Original Message-----
From: Niel Archer [mailto:spam-free@xxxxxxxxxxxxxxxx] 
Sent: Friday, July 27, 2007 9:59 AM
To: php-windows@xxxxxxxxxxxxx
Subject: Re:  Arrays past to functions

Hi Jacob

try this:

  function compute_salestax ($Amount , $State)
 {
     $taxRate = array("CA" => 5 , "WA" =>  7, "OR" => 8);
     return $Amount  * $taxRate($state);
  }

  $payment = 1500;
  $locale = 'CA';
   print "Tax on $amount in $locale is " . compute_salestax ($payment ,
$locale);

--
Niel Archer

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux