GET Method :-

GET Method পৃষ্ঠা অনুরোধে সংযুক্ত এনকোডযুক্ত ব্যবহারকারীর তথ্য প্রেরণ করে। পৃষ্ঠাটি এবং এনকোডযুক্ত তথ্যগুলি পৃথক করে? অক্ষর।
(The GET method sends the encoded user information appended to the page request. The page and the encoded information are separated by the ? character.)

  • GET Method একটি দীর্ঘ স্ট্রিং তৈরি করে যা আপনার সার্ভার লগগুলিতে ব্রাউজারের অবস্থান: বাক্সে উপস্থিত হয়। (The GET method produces a long string that appears in your server logs, in the browser's Location: box.)
  • GET method কেবল 1024 টি অক্ষর পর্যন্ত প্রেরণে সীমাবদ্ধ। (The GET method is restricted to send upto 1024 characters only.)
  • আপনার পাসওয়ার্ড বা সার্ভারে প্রেরণ করার জন্য অন্যান্য সংবেদনশীল তথ্য থাকলে কখনও GET method ব্যবহার করবেন না। (Never use GET method if you have password or other sensitive information to be sent to the server.)
  • GET সার্ভারে চিত্র বা শব্দের নথির মতো বাইনারি ডেটা প্রেরণে ব্যবহার করা যাবে না। (GET can't be used to send binary data, like images or word documents, to the server.)
  • GET method দ্বারা প্রেরিত ডেটা QUERY_STRING পরিবেশ পরিবর্তনশীল ব্যবহার করে অ্যাক্সেস করা যায়। (The data sent by GET method can be accessed using QUERY_STRING environment variable.)
  • PHP GET পদ্ধতি ব্যবহার করে প্রেরিত সমস্ত তথ্য অ্যাক্সেস করার জন্য $ _GET সহযোগী অ্যারে সরবরাহ করে। (The PHP provides $_GET associative array to access all the sent information using GET method.)

Input :-


Output : -


PHP ফাইলের নামের পরে একটি দীর্ঘ স্ট্রিং রয়েছে। স্ট্রিংটি URL এর মাধ্যমে ইনপুট নাম এবং মান বহন করে। (There is a long string after the name of php file. The string carries the input name and the value through url.)


POST Method :-

POST method http শিরোনামের মাধ্যমে তথ্য স্থানান্তর করে।GET method ক্ষেত্রে বর্ণিত হিসাবে তথ্যটি এনকোড করা হয়েছে এবং QUERY_STRING নামক একটি শিরোনামে রাখা হয়েছে।
(The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method and put into a header called QUERY_STRING.)

  • পোষ্ট পদ্ধতিতে ডেটা আকার প্রেরণে কোনও বিধিনিষেধ নেই। (The POST method does not have any restriction on data size to be sent.)
  • পোষ্ট পদ্ধতিটি ASCII পাশাপাশি বাইনারি ডেটা প্রেরণে ব্যবহার করা যেতে পারে। (The POST method can be used to send ASCII as well as binary data.)
  • পোষ্ট পদ্ধতিতে প্রেরিত ডেটা এইচটিটিপি শিরোনামের মধ্য দিয়ে যায় তাই সুরক্ষা এইচটিটিপি প্রোটোকলের উপর নির্ভর করে। সুরক্ষিত HTTP ব্যবহার করে আপনি নিশ্চিত করতে পারেন যে আপনার তথ্য সুরক্ষিত (The data sent by POST method goes through HTTP header so security depends on HTTP protocol. By using Secure HTTP you can make sure that your information is secure.)
  • পিওএসপি পদ্ধতি পোস্ট ব্যবহার করে প্রেরিত সমস্ত তথ্য অ্যাক্সেস করতে $ _POST সহযোগী অ্যারে সরবরাহ করে। (The PHP provides $_POST associative array to access all the sent information using POST method.)


Input : -


Outpot :-


PHP ফাইলের নামের পরে কোনও স্ট্রিং নেই। (There is no string after php file name.)