Skip to content

Tag: php

IIS+PHP 7 +Firebird

I am trying to configure IIS+PHP 7 + firebird. IIS and PHP are working fine but when I try to connect to a firebird db it shows this message: “Could not connect to localhost: We were unable to use the Firebird database because the ibase extension for PHP is not installed. Check your PHP.ini to see how y…

Php flip the echo result

I confused the method to flip the place of the echo result, below is my code while ($looptools == 0) { $mysqlihelper = ” SELECT * FROM soal WHERE nomorsoal = $numberofmysqli “; $…

Php base base64 encode and decode not working correctly

I want to encode and decode in php using base64, but the encode and decode function does not give me correct output. I am using code from online php functions. I encode this string “best arabic songs loves 2013 nonstop أفضل من الأغاني الحب الجديد كلمات العربي” and get the output: “YmVzdCBhcm…

Getting unknown property Exception in yii2

here I have a model in yii2 when I want to submit the form I face with this error. Getting unknown property: appmodelsCarAd::used_value but as you see I have this field in my fields. My table name is car_ad. what is the problem with my code? Answer Because this field is not present in the @property comment I …