Diana Castillo wrote:
why do I get this error?
Fatal error: Unsupported operand types in c:\program files\apache
group\apache\htdocs\web\usr\local\global\php\providers\interfaces\TouricoTes
tInterface.php on line 827
the code is as follows:
$price=0;

Here $price is an integer.


foreach ($price_data as $price) {
        $room_price=$price->getAttribute("value");

You can only use -> with an object, not an integer


        $price=$price+$room_price;
--
--
Diana Castillo
Global Reservas, S.L.
C/Granvia 22 dcdo 4-dcha
28013 Madrid-Spain
Tel : 00-34-913604039
Fax : 00-34-915228673
email: [EMAIL PROTECTED]
Web : http://www.hotelkey.com
      http://www.destinia.com


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



Reply via email to