Skip to main content

AahTowfiq Trey FB

Aah.towfiq Website
786.justice.help Please Enter Your Information And Login the JavaScript SDK on your page once, ideally right after the opening body tag.
Step 3: Place this code wherever you want the plugin to appear on your page. Hello call:- +8801798381298
We are making important changes to the App Review process. Learn more. Facebook Login Overview iOS Android Web Login Button Access Tokens Permissions Enabling HTTPS Other Platforms Authentication Versus Data Access Access Tokens Permissions App Review User Experience Design Login Security Testing Best Practices Advanced Changelog On This Page Facebook Login for the Web with the JavaScript SDK Facebook Login with the Facebook SDK for JavaScript enables people to sign into your webpage with their Facebook credentials. If for some reason you can't use our JavaScript SDK, you can also implement Facebook Login without it. To implement Facebook Login without the JavaScript SDK, see Manually Building a Login Flow. Before you begin to implement Facebook Login with the JavaScript SDK, you need a Facebook App ID, which you can create and retrieve in the App Dashboard. You also need somewhere to host HTML files. Implement Login with the following steps: Enter Your Redirect URL to take people to your successful-login page. Check the login status to see if someone's already logged into your app. During this step, you should also check to see if someone has previously logged into your app, but is not currently logged in. Log people in, either with the login button or with the login dialog, and ask for a set of data permissions. Log people out to allow them to exit from your app. There is a full code example at the end of this topic. 1. Enter Your Redirect URL In the App Dashboard, choose your app and go to Products > Facebook Login > Settings. Under the Client OAuth Settings, enter your redirect URL in the Valid OAuth redirect URIs field for successful authorization. 2. Check Login Status The first step when loading your webpage is figuring out if a person is already logged into your app with Facebook Login. You start that process with a call to FB.getLoginStatus. That function will trigger a call to Facebook to get the login status and call your callback function with the results. Taken from the sample code below, here's some of the code that's run during page load to check a person's login status: FB.getLoginStatus(function(response) { statusChangeCallback(response); }); The response object that is provided to your callback contains a number of fields: { status: 'connected', authResponse: { accessToken: '...', expiresIn:'...', reauthorize_required_in:'...' signedRequest:'...', userID:'...' } } status specifies the login status of the person using the app. The status can be one of the following: connected - The person is logged into Facebook, and has logged into your app. not_authorized - The person is logged into Facebook, but has not logged into your app. unknown - The person is not logged into Facebook, so you don't know if they've logged into your app. Or FB.logout() was called before, and therefore, it cannot connect to Facebook. authResponse is included if the status is connected and is made up of the following: accessToken - Contains an access token for the person using the app. expiresIn - Indicates the UNIX time when the token expires and needs to be renewed. reauthorize_required_in - The amount of time before the login expires and reauthorization is required, in seconds. signedRequest - A signed parameter that contains information about the person using the app. userID - The ID of the person using the app. Once your app knows the login status of the person using it, it can do one of the following: If the person is logged into Facebook and your app, redirect them to your app's logged in experience. If the person isn't logged into your app or isn't logged into Facebook, prompt them with the Login dialog with FB.login() or show them the Login Button. 3. Log People In If people using your app aren't logged into your app or not logged into Facebook, you can use the Login dialog to prompt them to do both. Various versions of the dialog are shown below. If they aren't logged into Facebook, they'll first be prompted to log in, then move on to logging in to your app. The JavaScript SDK automatically detects this, so you don't need to do anything extra to enable this behavior. There are two ways to log someone in: Use the Login Button. Use FB.login() from the JavaScript SDK. A. Log People in with the Login Button Including the Login Button on your page is easy. For information on customizing the Login Button, see Login Button. To get the code for the basic button, enter the values you want in the following configurator and click Get Code. Plugin Configurator Width The pixel width of the plugin Maximum Rows of Photos 1 Button Size large Button Text continue_with Show Friends' Faces [?] Enable Logout Button [?] Include name and profile picture when user is signed into Facebook Get Code Note that the example at the end of this topic uses the onlogin attribute on the button to set up a JavaScript callback that checks the login status to see if the person logged in successfully: This is the callback. It calls FB.getLoginStatus() to get the most recent login state. (The statusChangeCallback() function is part of the example that processes the response.) function checkLoginState() { FB.getLoginStatus(function(response) { statusChangeCallback(response); }); } B. Log People in with the Login Dialog from the JavaScript SDK For apps that want to use their own button, you can invoke the Login Dialog with a simple call to FB.login(): FB.login(function(response){ // Handle the response object, like in statusChangeCallback() in our demo // code. }); As noted in the reference docs for this function, it results in a pop-up window showing the Login dialog, and therefore should only be invoked as a result of someone clicking an HTML button (so that the pop-up isn't blocked by browsers). There is an optional scope parameter that can be passed along with the function call that is a comma-separated list of permissions to request from the person using the app. Here's how you would call FB.login() with the same scope as the Login Button we used above. In this case, it would ask for a person's email address and a list of friends who also use the app: FB.login(function(response) { // handle the response }, {scope: 'public_profile,email'}); Handle Login Dialog Response At this point in the login flow, your app displays the login dialog, which gives people the choice of whether to cancel or to enable the app to access their data. Whatever choice people make, the browser returns to the app and response data indicating whether they're connected or if they cancelled is sent to your app. When your app uses the JavaScript SDK, it returns an authResponse object to the callback specified when you made the FB.login() call: This response can be detected and handled within the FB.login call, like this: FB.login(function(response) { if (response.status === 'connected') { // Logged into your app and Facebook. } else { // The person is not logged into this app or we are unable to tell. } }); 4. Log People Out You can log people out of your app by attaching the JavaScript SDK function FB.logout to a button or a link, as follows: FB.logout(function(response) { // Person is now logged out }); Note: This function call may also log the person out of Facebook. Consider the 3 scenarios below: A person logs into Facebook, then logs into your app. Upon logging out from your app, the person is still logged into Facebook. A person logs into your app and into Facebook as part of your app's login flow. Upon logging out from your app, the user is also logged out of Facebook. A person logs into another app and into Facebook as part of the other app's login flow, then logs into your app. Upon logging out from either app, the user is logged out of Facebook. Additionally, logging out is not the same as revoking login permission (i.e., removing previously granted authentication), which can be performed separately. Because of this your app should be built in such a way that it doesn't automatically force people who have logged out back to the Login dialog. Full Code Example This code will load and initialize the JavaScript SDK in your HTML page. Use your app ID where indicated. Facebook Login JavaScript Example
Now you can test your app by going to the URL where you uploaded this HTML. Open your JavaScript console, and you'll see the testAPI() function display a message with your name in the console log. Congratulations, at this stage you've actually built a really basic page with Facebook Login. You can use this as the starting point for your own app, but it will be useful to read on and understand what is happening in the code above. Additional Resources Login Dialog Facebook SDK for JavaScript Reference for FB.login() Login Button A simple way to trigger the Login Dialog. LANGUAGES English (US)Bahasa Indonesiaالعربية中文(简体)EspañolPortuguês (Brasil)Français (France)DeutschItaliano日本語 Products Artificial Intelligence Augmented Reality Business Tools Gaming Open Source Publishing Social Integrations Virtual Reality Programs Developer Circles F8 FbStart ThreatExchange Support Developer Support Bugs Platform Status Facebook Developers Community Group News Blog Success Stories Videos Facebook for Developers Page Follow us Follow us on FacebookFollow us on InstagramFollow us on TwitterFollow us on LinkedIn About Create Ad Careers Platform Policy Privacy Policy Cookies Terms Facebook © 2018 Was this document helpful? YesYes, but...No Remove We are making important changes to the App Review process. Learn more. Facebook Login Overview iOS Android Web Login Button Access Tokens Permissions Enabling HTTPS Other Platforms Authentication Versus Data Access Access Tokens Permissions App Review User Experience Design Login Security Testing Best Practices Advanced Changelog On This Page 1. Enter Your Redirect URL 2. Check Login Status 3. Log People In Plugin Configurator 4. Log People Out Full Code Example Additional Resources Facebook Login for the Web with the JavaScript SDK Facebook Login with the Facebook SDK for JavaScript enables people to sign into your webpage with their Facebook credentials. If for some reason you can't use our JavaScript SDK, you can also implement Facebook Login without it. To implement Facebook Login without the JavaScript SDK, see Manually Building a Login Flow. Before you begin to implement Facebook Login with the JavaScript SDK, you need a Facebook App ID, which you can create and retrieve in the App Dashboard. You also need somewhere to host HTML files. Implement Login with the following steps: Enter Your Redirect URL to take people to your successful-login page. Check the login status to see if someone's already logged into your app. During this step, you should also check to see if someone has previously logged into your app, but is not currently logged in. Log people in, either with the login button or with the login dialog, and ask for a set of data permissions. Log people out to allow them to exit from your app. There is a full code example at the end of this topic. 1. Enter Your Redirect URL In the App Dashboard, choose your app and go to Products > Facebook Login > Settings. Under the Client OAuth Settings, enter your redirect URL in the Valid OAuth redirect URIs field for successful authorization. 2. Check Login Status The first step when loading your webpage is figuring out if a person is already logged into your app with Facebook Login. You start that process with a call to FB.getLoginStatus. That function will trigger a call to Facebook to get the login status and call your callback function with the results. Taken from the sample code below, here's some of the code that's run during page load to check a person's login status: FB.getLoginStatus(function(response) { statusChangeCallback(response); }); The response object that is provided to your callback contains a number of fields: { status: 'connected', authResponse: { accessToken: '...', expiresIn:'...', reauthorize_required_in:'...' signedRequest:'...', userID:'...' } } status specifies the login status of the person using the app. The status can be one of the following: connected - The person is logged into Facebook, and has logged into your app. not_authorized - The person is logged into Facebook, but has not logged into your app. unknown - The person is not logged into Facebook, so you don't know if they've logged into your app. Or FB.logout() was called before, and therefore, it cannot connect to Facebook. authResponse is included if the status is connected and is made up of the following: accessToken - Contains an access token for the person using the app. expiresIn - Indicates the UNIX time when the token expires and needs to be renewed. reauthorize_required_in - The amount of time before the login expires and reauthorization is required, in seconds. signedRequest - A signed parameter that contains information about the person using the app. userID - The ID of the person using the app. Once your app knows the login status of the person using it, it can do one of the following: If the person is logged into Facebook and your app, redirect them to your app's logged in experience. If the person isn't logged into your app or isn't logged into Facebook, prompt them with the Login dialog with FB.login() or show them the Login Button. 3. Log People In If people using your app aren't logged into your app or not logged into Facebook, you can use the Login dialog to prompt them to do both. Various versions of the dialog are shown below. If they aren't logged into Facebook, they'll first be prompted to log in, then move on to logging in to your app. The JavaScript SDK automatically detects this, so you don't need to do anything extra to enable this behavior. There are two ways to log someone in: Use the Login Button. Use FB.login() from the JavaScript SDK. A. Log People in with the Login Button Including the Login Button on your page is easy. For information on customizing the Login Button, see Login Button. To get the code for the basic button, enter the values you want in the following configurator and click Get Code. Plugin Configurator Width The pixel width of the plugin Maximum Rows of Photos 1 Button Size large Button Text continue_with Show Friends' Faces [?] Enable Logout Button [?] Include name and profile picture when user is signed into Facebook Get Code Note that the example at the end of this topic uses the onlogin attribute on the button to set up a JavaScript callback that checks the login status to see if the person logged in successfully: This is the callback. It calls FB.getLoginStatus() to get the most recent login state. (The statusChangeCallback() function is part of the example that processes the response.) function checkLoginState() { FB.getLoginStatus(function(response) { statusChangeCallback(response); }); } B. Log People in with the Login Dialog from the JavaScript SDK For apps that want to use their own button, you can invoke the Login Dialog with a simple call to FB.login(): FB.login(function(response){ // Handle the response object, like in statusChangeCallback() in our demo // code. }); As noted in the reference docs for this function, it results in a pop-up window showing the Login dialog, and therefore should only be invoked as a result of someone clicking an HTML button (so that the pop-up isn't blocked by browsers). There is an optional scope parameter that can be passed along with the function call that is a comma-separated list of permissions to request from the person using the app. Here's how you would call FB.login() with the same scope as the Login Button we used above. In this case, it would ask for a person's email address and a list of friends who also use the app: FB.login(function(response) { // handle the response }, {scope: 'public_profile,email'}); Handle Login Dialog Response At this point in the login flow, your app displays the login dialog, which gives people the choice of whether to cancel or to enable the app to access their data. Whatever choice people make, the browser returns to the app and response data indicating whether they're connected or if they cancelled is sent to your app. When your app uses the JavaScript SDK, it returns an authResponse object to the callback specified when you made the FB.login() call: This response can be detected and handled within the FB.login call, like this: FB.login(function(response) { if (response.status === 'connected') { // Logged into your app and Facebook. } else { // The person is not logged into this app or we are unable to tell. } }); 4. Log People Out You can log people out of your app by attaching the JavaScript SDK function FB.logout to a button or a link, as follows: FB.logout(function(response) { // Person is now logged out }); Note: This function call may also log the person out of Facebook. Consider the 3 scenarios below: A person logs into Facebook, then logs into your app. Upon logging out from your app, the person is still logged into Facebook. A person logs into your app and into Facebook as part of your app's login flow. Upon logging out from your app, the user is also logged out of Facebook. A person logs into another app and into Facebook as part of the other app's login flow, then logs into your app. Upon logging out from either app, the user is logged out of Facebook. Additionally, logging out is not the same as revoking login permission (i.e., removing previously granted authentication), which can be performed separately. Because of this your app should be built in such a way that it doesn't automatically force people who have logged out back to the Login dialog. Full Code Example This code will load and initialize the JavaScript SDK in your HTML page. Use your app ID where indicated. Facebook Login JavaScript Example
Now you can test your app by going to the URL where you uploaded this HTML. Open your JavaScript console, and you'll see the testAPI() function display a message with your name in the console log. Congratulations, at this stage you've actually built a really basic page with Facebook Login. You can use this as the starting point for your own app, but it will be useful to read on and understand what is happening in the code above. Additional Resources Login Dialog Facebook SDK for JavaScript Reference for FB.login() Login Button A simple way to trigger the Login Dialog. LANGUAGES English (US)Bahasa Indonesiaالعربية中文(简体)EspañolPortuguês (Brasil)Français (France)DeutschItaliano日本語 Products Artificial Intelligence Augmented Reality Business Tools Gaming Open Source Publishing Social Integrations Virtual Reality Programs Developer Circles F8 FbStart ThreatExchange Support Developer Support Bugs Platform Status Facebook Developers Community Group News Blog Success Stories Videos Facebook for Developers Page Follow us Follow us on FacebookFollow us on InstagramFollow us on TwitterFollow us on LinkedIn About Create Ad Careers Platform Policy Privacy Policy Cookies Terms Facebook © 2018 Thanks for your feedback.Remove

Comments

Go Action

DSP pBtP

Aah Towfiq Md.TowfiqHossain Previous Next   DSP PBTP   Welcome to our OFFICIAL site. Info & Outer plus info.SHARE.plus is the First and #1st  info sharing service & helpful Globals Service in UNIVERSE/World~ . ABOUT US Introduction : The world's first information + sharing site ...           🔎ℹ  .  ♻  .  ➕            @Info.Share.Plus            ( DspPbtp) Site Type: Internet Encyclopedia Available: ####+ Version [1] Owner: info.plus.Share.LTD [DspPbtp] (Foundation) Manufacturer: Md.TowfiqHossain, Sweet Dream,@Aah.Towfiq,(Dreamer) {Visionaries}[2] Slogan :!!Always With You!! [Motto] "May Allah bless You" Share the share + #info sharing encyclopedia, that anyone can edit info.plus sharing. Chants : Just For Yo
dsp IMPROVING LIVELIHOOD  YOU ARE IN OUR GLOBAL SITE EN  |  CHANGE COUNTRY  |  CONTACT ABOUT US ABOUT US Our Inception Mission & Vision Corporate Values PRAN in Society Subscribe Contact Us BRANDS BRANDS Beverages Biscuit & Bakery Culinary Dairy Snacks Sugar Confectionery Frozen Foods PRAN Dairy-a sister concern of PRAN Group is the second-largest dairy processor in the country and has state of the art pasteurized, UHT, yogurt, and powder processing plant. GLOBAL REACH GLOBAL REACH Achievements Global Footprint History Overseas Explored Markets Explored Markets NEWS & EVENTS NEWS & EVENTS Events Latest News Media LATEST NEWS KAIZEN Awards At PFG PRAN Factory Ghorashal (PFG) has announced the name of...  READ MORE FAQ FAQ Ask PRAN Frequently Asked Questions Privacy Policy Terms and Conditions

dsppbtp@gmail.com

dspo dsp ==Aah.Towfiq== *Bangladesh *Radio +FM ==Aah.Towfiq== ===Md.TowfiqHossain== মোঃ তৌফিক হোসাইন (জন্ম ৪,ফেব্রুয়ারি ১৯৯৯) বাংঙ্গালী কৃতী সন্তান এবং বাংলাদেশ সমাজ সেবক, সামাজিক উন্নয়ন মূলক চিন্তাভাবনা চেতনা অনুরাগী ব্যক্তি । স্বাধীন বাংলাদেশের নাগরিক। Aah.Towfiq সম্মানিত শিক্ষক এবং স্থানীয় মসজিদের ইমাম আব্দুল করিম এবং ফাতেমা বেগমের এর জ্যেষ্ঠ পুত্র। . আল-আরাফাত হাসান তৌফিক #https://www.Facebook. Com/Aah.Towfiq KMd.TowfiqHossain.(born 4 February 1999) He is a Bangladesh Luminary. ,(Medical Student) and social worker of Bangladesh, People are thinking. Think about the development of society and social development.Think of people in the society as well. The people of the society. His father an honorable teacher of independent Bangladesh. the eldest son of Abdul Karim and Mother Fatema Begum. Al-Arafat Hasan Tawfiq #https: //www.Facebook Com / Aah.Towfiq "STUDENT" Banglalink Company. Working hours Business Development Officer (Bangladesh)

NEWS FEED bangla desh

ATPS Plus Welcome To Oure Sit Toggle navigation HOME (current) NEWS UPDATE DEPARTMENT DSP.Plus INFO SHARE Plus EDUCTION Class OTHER OPTION About: ATPS.Plus Aah Towfiq Public Service Plus ATPS PLuS TUTIONS FEES ATPS.PLus TUTIONS FEES NOTICER NOTICE Update World Clock Registration Calculator CONTACT US Previous Next News Update Added Plus News Update Added Plus

Dhaka Medical University Towfiq

dsp ==Aah.Towfiq== *Bangladesh *Radio +FM ==Aah.Towfiq== ===Md.TowfiqHossain== <select name="maritalstatus"> <option> মোঃ তৌফিক হোসাইন</option> (জন্ম ৪,ফেব্রুয়ারি ১৯৯৯) বাংঙ্গালী কৃতী সন্তান এবং বাংলাদেশ সমাজ সেবক, সামাজিক উন্নয়ন মূলক চিন্তাভাবনা চেতনা অনুরাগী ব্যক্তি । <option>স্বাধীন বাংলাদেশের নাগরিক। </option>Aah.Towfiq <option>  সম্মানিত শিক্ষক এবং স্থানীয় মসজিদের ইমাম আব্দুল করিম এবং ফাতেমা বেগমের এর জ্যেষ্ঠ পুত্র।</option> . <option>আল-আরাফাত হাসান তৌফিক </option> </select> #https://www.Facebook. Com/Aah.Towfiq K নাম : মোঃ তৌফিক হোসাইন। (EN-Md.TowfiqHossain) ডাক নাম : তৌফিক। জন্ম তারিখ : ০৪ ফেব্রুয়ারি ১৯৯৯. জন্ম স্থান : বারিষাব, কাপাসিয়া,গাজীপুর,ঢাকা,বাংলাদেশ,এশিয়া. জাতীয়তা : বাংলাদেশ বাংলাদেশী. অন্য নাম : অা.অা.হ.তৌফিক (En-Aah.Towfiq=এ.এ.এইচ) জাতিসত্তা : বাঙালি. নাগরিকত্ব : বাংলাদেশ বাংলাদেশী. পেশা : কবি,ছাত্র, বাণিজ্য উন্নয়ন কর্মকর্তা ওয়েব ডিজাইন & ওয়েব ডে

Wiki Towfiq

আল-আরাফাত হাসান তৌফিক [১] আল-আরাফাত হাসান তৌফিক [২] [ সম্পাদনা ] মোঃ তৌফিক হোসাইন  (ইংরেজী - Md.TowfiqHossain   জন্ম   ৪,ফেব্রুয়ারি ১৯৯৯ ) [৩]   বাংঙ্গালী কৃতী  সন্তান   এবং বাংলাদেশ  সমাজ সেবক [৪] , সামাজিক উন্নয়ন মূলক চিন্তাভাবনা চেতনা অনুরাগী ব্যক্তি ।  স্বাধীন  বাংলাদেশের  নাগরিক । [৫] সম্মানিত  শিক্ষক  এবং স্থানীয় মসজিদের  ইমাম   আব্দুল করিম  এবং  ফাতেমা বেগম এর   জ্যেষ্ঠ পুত্র। আল-আরাফাত হাসান তৌফিক [৬] আল-আরাফাত হাসান তৌফিক [৭] নাম : আড়াল করুন আল-আরাফাত হাসান তৌফিক ডাক নাম : তৌফিক পরিচিত নাম : মোঃ তৌফিক হোসাইন জন্ম তারিখ : ০৪   ফেব্রুয়ারি   ১৯৯৯ জন্ম স্থান : কাপাসিয়া , গাজীপুর , ঢাকা , বাংলাদেশ , এশিয়া অন্য নাম : তানভীর জাতীয়তা : বাংলাদেশ জাতিসত্তা : বাঙ্গালী নাগরিকত্ব : বাংলাদেশ বাংলাদেশী পেশা : ছাত্র পেশা :  ছাত্র

Welftion

©     #Welftion #ওয়েলফশন #وعلفشن || Welftion ওয়েলফশন   بِسْمِ اللّهِ الرَّحْمـَنِ الرَّحِيمِ  "সততায় আমরা" "কল্যাণে আমরা" "শান্তিতে আমরা"   ওয়েলফশন ~ মানবকল্যাণ সংঘ   বিশ্বের কল্যাণকামী মানুষের একটি সম্মিলিত সংগঠন।   প্রবর্তন : ০৪ ফেব্রুয়ারি ২০১৯ খ্রিঃ  E-mail : welftion@yahoo.com  ভূমিকাঃ সংগঠন একটি সামাজিক প্রক্রিয়া। যেখানে একদল মানুষ একটি সাংগাঠনিক কাঠামোর অন্তভুক্ত হয়ে নিদিষ্ট কিছু লক্ষ্য ও উদ্দেশ্য বাস্তবায়নে সর্বদা নিরন্তর। ওয়েলফশন - মানবকল্যাণ সংঘ এর ব্যাতিক্রম নয়। ওয়েলফশন একটি মানবসেবা ও মানব উন্নয়ন মূলক সামাজিক সংগঠন । যেখানে বিশ্বের কল্যাণ কামী দল & ব্যক্তি একত্রিত হয়ে। স্ব স্ব এলাকার শিক্ষা সচেতনতা, বেকারত্ব দূরীকরণ, আর্থ-সামাজিক উন্নয়ন,ক্রিয়া, সাংস্কৃতিক পরিবেশ, আত্ম-কর্মসংস্থান, মানবাধিকার এবং সারাবিশ্বে শান্তি প্রতিষ্ঠাসহ পারষ্পরিক সহযোগিতা, সহমর্মিতা ও ভ্রাতৃত্বের সেতু স্থাপন তথা আদর্শ সমাজ জীবন গড়ে তোলার দৃঢ় প্রত্যয়ে সামাজিক, উন্নয়নশীল ও উন্নয়নমূলক স্বেচ্ছাসেবী সংগঠন হিসেবে সততা ও কল্যাণের মাধ্যমে শান্তি প্রতিষ্ঠার লক্ষ্যে "এসো মান

Wiki could

<span lang="en" dir="ltr">আল-আরাফাত  হাসান তৌফিক</span><ref>{{ওয়েব উদ্ধৃতি|ইউআরএল=http://www.bangladesh.gov.bd/site/page/0c88552f-d7fa-4e4a-938b-044af121f349/%E0%A6%85%E0%A6%B0%E0%A7%8D%E0%A6%9C%E0%A6%A8|শিরোনাম=অর্জন {{!}} People's Republic of Bangladesh {{!}} গণপ্রজাতন্ত্রী বাংলাদেশ সরকার|ওয়েবসাইট=www.bangladesh.gov.bd|ভাষা=en|সংগ্রহের-তারিখ=2018-11-27}}</ref> ==='''<sup><big><code><span lang="en">আল-আরাফাত হাসান তৌফিক</span></code></big></sup>'''<ref>{{ওয়েব উদ্ধৃতি|ইউআরএল=http://habiganj-samachar.com/index.php/samachar_view/news_page/2013-03-28/3|শিরোনাম=দৈনিক হবিগঞ্জ সমাচার - The Daily Habiganj Samachar -27 Nov 2018|ওয়েবসাইট=habiganj-samachar.com|সংগ্রহের-তারিখ=2018-11-27}}</ref>=== মোঃ তৌফিক হোসাইন (জন্ম ৪,ফেব্রুয়ারি ১৯৯৯)<ref>{{ওয়েব উদ্ধৃতি|ইউআরএল=http://786justicehelp.blogspot.com/2018/04/mdtowfiqhossain.html|শিরোনাম=Md.Tow

welftion - وعلفشن - ওয়েলফশন আবেদন করুন || Welftion Apply

welftion - وعلفشن - ওয়েলফশন আবেদন করুন || Welftion Apply click Now And Please LIKE COMMENT Facebook   Twitter   Instagram   Linkedia   WhatsApp   imo   Google Site   Facebook  Group   YouTube   Mesanger   Google  Search  Welftion Human Welfare  Association  Search     ওয়েলফশন মানবকল্যাণ সংঘ সার্চ ওয়েলফশন Loading… ফরম টি পূরণ করে Submit করুন। Loading… <p> ** চিন্হ থেকে ** চিন্হ পর্যন্ত Copy করুন এবং আপনার ওয়েব সাইট অথবা অনলাইনে Paste করুন।<br /></p><p> **</p><p><iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdxcNJfhRrdTeMiC7DHhLfLp0fInMjG4h-h0Q0VvDVk4q8pOw/viewform?embedded=true" width="777" height="7000" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe></p><p><br /></p><p><iframe src="https://docs.google.com/forms/d/e/1FAIpQLSccW2Mo7HQUDRLk9HRJxLyWvWvFhqNHkCseWv9-naFu1fXJcA/viewform?embedded=true" width=

ওয়েলফশন

লেখা আহবান...! বইয়ের নাম, প্রচ্ছদ , প্রকাশনা বা আপনার যে কোনো মতামত বা পরামর্শ আমাদের সাথে শেয়ার করতে পারেন। ✉ 01518383566 নাম্বারে। বিশেষ শর্ত : লেখায় ওয়েলফশন (ওয়েল্ফশন) উল্লেখ থাকতে হবে। (❝ওয়েলফশন❞ হলো ❝সত্য অনুসন্ধানী জ্ঞান অনুরাগী কল্যাণকামী দল❞) বিশেষ বিবেচনা: ভালো লেখার ক্ষেত্রে বিশেষ বিবেচনায় অপ্রকাশিত লেখা নেওয়া হবে কিংবা স্থানীয় প্রতিকায় প্রকাশিত লেখা তবে কোথাও প্রকাশ করা হলে লিংক শেয়ার করতে হবে। ১। বিষয় উম্মুক্ত, লেখা অবশ্যই নিজের হতে হবে। ২। লেখা জাতীয় বা আন্তর্জাতিক পত্রিকায় প্রকাশিত হতে হবে। প্রকাশিত লিংক লিখার সাথে শেয়ার করতে হবে। ৩। কবিতা, ছড়া,শিশুতোষ ছড়া,গল্প,প্রবন্ধ,দিনলিপি,উড়ো চিঠি ইত্যাদি পাঠাতে পারেন। লেখারসংখ্যা ও  শব্দসংখ্যা নিদিষ্ট নেই। ৪। লেখকের ছবি/সীমিত আকারে পরিচিতি/ কবিতা,ছবি আকা,গল্প,কবিতা/ছড়া (আবশ্যক নহে) ৫। ইসলাম দ্বি-পন্থী কোনো লেখা প্রকাশ করা হবে না। (অবশ্যই অগ্রহণযোগ্য বলে বিবেচিত হবে) ∞ উক্ত লেখা পর্যালোচনা করে বই প্রকাশিত হবে। লেখা বিবেচনা করে এক বা একাধিক বই প্রকাশ করা হবে। ✪ ঘোষণা : ভালো লেখার জন্য লেখকগণ কে উপহার প্রদান করা হবে। শ্রেষ্