দুঃখিত, আপনি PHP ব্যবহার করে কোনও ইনপুট নিতে পারবেন না (Sorry, You can not take any input using php)

PHP ইনপুট নিতে আপনাকে HTML ব্যবহার করতে হবে (You have to use html to take input in php)

কীভাবে ইনপুট পাবেন (How to get input)?

Input :-















HTML বিভাগের অভ্যন্তরে (Inside HTML section) :-

  • HTML ফর্ম ডিজাইন করুন (Design a html form)
  • action (কোথায় ফর্মটি জমা দিতে হবে) এবং method (ফর্মটি কীভাবে জমা দিতে হবে) সেট করুন {Set action (where to submit the form) and method (how to submit the form) }

এখানে আমরা PHP কোড লিখতে একই পৃষ্ঠাটি ব্যবহার করছি যাতে action ফাঁকা ছিল। আপনি যদি অন্য পৃষ্ঠায় PHP কোড লিখতে চান তবে PHP পৃষ্ঠার URL action  দিন উদাহরণ: - action = "formssubmit.php"
 (Here we are using same page to write php code  so the action was blank. If you want to write php code in another page then give the url of the php page in action. example : - action="formssubmit.php"

এখানে একটি method হিসাবে আমরা get method ব্যবহার করছি আপনি post method ব্যবহার করতে পারেন। (Here as a  method we are using get method you can use post method also.)

আমরা পরবর্তী টিউটোরিয়ালে get এবং post method মধ্যে পার্থক্য সম্পর্কে বর্ণনা করব। (We will describe about the differance between get and post method in next tutorial.)

PHP বিভাগের অভ্যন্তরে (Inside PHP section) :-

  • আমরা দুটি variable তৈরি করি। 1 - fnumber, 2- snumber (We create two variable. 1 - fnumber , 2-snumber)
  • ইনপুটগুলির name (html attribute) দ্বারা HTML  ইনপুটগুলির মান পেয়েছেন। এবং এটি সেই variable সংরক্ষণ করছি। (Got the value of HTML inputs by the name(attribute) of the inputs. And stored it into those variables.)
  • এখানে আমরা {$ GET ['fnumber']} ব্যবহার করছি কারণ আমরা get method ব্যবহার করছি এবং ইনপুটটির নাম "fnumber"। (Here we using {$GET['fnumber']} because we are using get method and the name of the input is "fnumber".
  • এবং echo  দুটি variable যুক্ত করাচ্ছি (And add  the two variables in echo).

Output :-


যদি আপনি এটি বুঝতে পারেন তবে কিছু সংখ্যাকে বিয়োগ, গুণ, বিভাগ, মডুলাস, এক্সপোশিয়েশন করার চেষ্টা করুন। (If you understand this then try to subtraction , multipication , division , modulus ,expoentiation some numbers.)


0 Comments