agriculture portal
1.0.0
fsend_otp.php
およびcsend_otp.php
ファイルを開き、ユーザー名とパスワードを変更します。 function smtp_mailer ( $ to , $ subject , $ msg ){
require_once ( " ../smtp/class.phpmailer.php " );
$ mail = new PHPMailer ();
$ mail -> IsSMTP ();
$ mail -> SMTPDebug = 0 ;
$ mail -> SMTPAuth = TRUE ;
$ mail -> SMTPSecure = ' ssl ' ;
$ mail -> Host = " smtp.gmail.com " ;
$ mail -> Port = 465 ;
$ mail -> IsHTML ( true );
$ mail -> CharSet = ' UTF-8 ' ;
$ mail -> Username = " [email protected] " ; // Change it to yours email address
$ mail -> Password = " password " ;
$ mail -> SetFrom ( " [email protected] " ); // App Password, (16 character Key)
$ mail -> Subject = $ subject ;
$ mail -> Body = $ msg ;
$ mail -> AddAddress ( $ to );
if (! $ mail -> Send ()){
return 0 ;
} else {
return 1 ;
}
}
git clone https://github.com/vaishnavid0604/agriculture-portal.git
pip install -r requirements.txt
customer/cbuy_crops.php
の成功 URL およびキャンセル URL ファイル パスを変更します。 $ session = Stripe Checkout Session :: create ([
' payment_method_types ' => [ ' card ' ],
' line_items ' => [[
' price_data ' => [
' product ' => ' prod_NdAYaoDLX3DnMY ' ,
' unit_amount ' => $ TotalCartPrice ,
' currency ' => ' inr ' ,
],
' quantity ' => 1 ,
]],
' mode ' => ' payment ' ,
' success_url ' => ' http://localhost/projects/agri2/customer/cupdatedb.php ' , // Change File Path
' cancel_url ' => ' http://localhost/projects/agri2/customer/cbuy_crops.php ' , // Change File Path
]);
fnewsfeed.php
のニュース API キーfweather_forecast.php
への OpenWeatherMap API キーcustomer/stripePayment/config.php
への Stripe API キーindex.php
およびfchatgpt.php
の OpenAI API キー作物管理システム データセットには次の機能が含まれています。
State_Name
、 District_Name
、およびSeason
を入力して、その場所で予測される作物を取得します。N
、 P
、 K
、 Temperature
、 Humidity
、 pH
、 Rainfall
を入力して、その場所に推奨される作物を取得します。Temperature
、 Humidity
、 Soil Moisture
、 Soil Type
、 Crop Type
、 Nitrogen
、 Phosphorous
、 Potassium
を入力して、その作物と場所に推奨される肥料を取得します。Subdivision
とYear
を入力して、その年の降雨予測を取得します。State_Name
、 District_Name
、 Crop_Year
、 Season
、 Crop
、 Area
、 Production
を入力して、その作物と場所の予測収量を取得します。 このプロジェクトは MIT ライセンスに基づいてライセンスされています。