Programming, tutorials, mechatronics, operating systems, and other tech stuff

PHP FPDF Use text wrapping in table with MultiCell Table

70 comments
When we make a table in pdf using PHP FPDF library, basically we build it individually cell by cell. It is of course not as convenience as making a table using xml language such as HTML table. And the major drawbacks of using Cells is it's not able to wrap or break text as it overflow the defined cell width.

MultiCell

However, there is a method in FPDF library called MultiCell which allows us to make a Cell that wraps it's content, in short, it will break the text and make a new line when the text exceed it's width, thus multiplies it's height accordingly. But it doesn't works the same way with Cell, especially the positioning as the height varies according to it's content.

To make a table using MultiCell, we need to find out how much lines needed in a row as every cell in a row should have same height. And then we need to define where to put next cell, we can do this by calculating current cell position and offset it with it's dimension.

Don't want the math? FPDF MultiCell Table Class to the rescue.

FPDF Founder, Olivier Plathey have provided a FPDF extension class to make table from MultiCell named PDF_MC_Table. You can copy it from here :
https://github.com/gemul/fpdf-multicell-table/blob/master/pdf_mc_table.php

To use it, change the main fpdf.php file path to your FPDF library directory.
<?php
//call main fpdf file
require('fpdf18/fpdf.php');
//create new class extending fpdf class
class PDF_MC_Table extends FPDF {
...

Then in your script, include the pdf_mc_table.php file, not fpdf.php file.

<?php
//include pdf_mc_table.php, not fpdf17/fpdf.php
include('pdf_mc_table.php');
...

Next, create a new object from PDF_MC_Table Class.

...
//make new object
$pdf = new PDF_MC_Table();
...

From this point onward, you can use $pdf to build your pdf structure as usual. It doesn't change any functionaly of FPDF but instead it does add new ones.

Build the pdf table with MultiCell.

Like usual, you can add pages, use cell to build your content, and finally call Output() to render your pdf. Please read Generate Printable Invoice in PHP using FPDF library for more information.
And when it comes to make a multicell table, you need to:
  1. Set Font

    This is important to calculate length of the text.
    ...
    //add page, set font
    $pdf->AddPage();
    $pdf->SetFont('Arial','',14);
    ...
    
  2. Define the columns width.

    The column width is defined in array manner using SetWidths() method. The number of element should match the number of column.
    ...
    //set width for each column (6 columns)
    $pdf->SetWidths(Array(20,40,40,30,20,40));
    ...
    
  3. Set the line height.

    Use SetLineHeight() to define line height. This height will be used globally in our table. What we need to define here is height of line, not the row height. For example, if we define the line height to 5, and the cell with greatest line number in a row require 3 lines, then the height of the entire row will be 5 * 3 = 15.
    ...
    //set line height. This is the height of each lines, not rows.
    $pdf->SetLineHeight(5);
    ...
    
  4. Set the columns alignment (optional).

    This is optional. The default alginment of the cell is Left. You can define column alignment using SetAligns() method in array manner, with 'L' or empty string for Left (default), 'R' for Right, 'C' for Center, 'J' for justified. Also note that even if you only want to change only one column, you need to define all of them because number of array elements should match the number of columns.
    For example, when we want to make second column right aligned and third column centered, we use:
    ...
    //set alignment
    $pdf->SetAligns(Array('','R','C','','',''));
    ...
    
  5. Make the table header with standard Cell.

    To make it look like a proper table, add a table heading using standard cell with same number of columns and same widths for each cell respectively. Make the font bold if you like, or change the fill color to distinct it from table body. In this example, i will only make it bold.
    ...
    
    //add table heading using standard cells
    //set font to bold
    $pdf->SetFont('Arial','B',14);
    $pdf->Cell(20,5,"ID",1,0);
    $pdf->Cell(40,5,"First Name",1,0);
    $pdf->Cell(40,5,"Last Name",1,0);
    $pdf->Cell(30,5,"Email",1,0);
    $pdf->Cell(20,5,"Gender",1,0);
    $pdf->Cell(40,5,"Address",1,0);
    //add a new line
    $pdf->Ln();
    //reset font
    $pdf->SetFont('Arial','',14);
    ...
    
    Add a new line after that and do not forget to change the font back to normal.
  6. Write each row with Row() method.

    Then write the data row by row with Row() method also in array manners. The class will take care of the math.
    ...
    //loop the data
    foreach($data as $item){
     //write data using Row() method containing array of values.
     $pdf->Row(Array(
      $item['id'],
      $item['first_name'],
      $item['last_name'],
      $item['email'],
      $item['gender'],
      $item['address'],
     ));
     
    }
    ...
    
That's it. And don't forget to call $pdf->Output(); method to see the result.

And always keep in mind to never output anything in your script, so no empty line before "<?php", no echo, var_dump(), print() whatsoever. Even an error report or php warning will break your pdf file thus make it a corrupted pdf.

Except when you want to debug your code, you can freely output anything but comment out $pdf->Output(); line to prevent pdf render.

Known limitations.

However, as far as i know, there are some limitation in this method which is:
  1. Borders.
    Because the border is drawn using Rect() behind the scene, you may need some tweaking if you wish to change its style, color or size.

Further explanation and tutorial video.

For further explanation on how this class works behind the scene, please watch my tutorial video on youtube here :
https://youtu.be/pELrw9P5ywM
Also check out my PHP PDF Video Tutorial playlist here:
https://www.youtube.com/playlist?list=PLHCU7DCP4jhxnxV4Ub4YDqWiZ061t183c

70 comments :

  1. This is a nice article here with some useful tips for those who are not used-to comment that frequently. Thanks for this helpful information I agree with all points you have given to us. I will follow all of them.
    Data science training in Bangalore | Data Science Training institute in Bangalore

    ReplyDelete
  2. Post is very useful. Thank you, this useful information.

    Learn Best Cognos Training in Bangalore from Experts. Softgen Infotech offers the Best Cognos Training in Bangalore.100% Placement Assistance, Live Classroom Sessions, Only Technical Profiles, 24x7 Lab Infrastructure Support.

    ReplyDelete
  3. Data Science is the future of Artificial Intelligence. Therefore, it is very important to understand what is Data Science and how can it add value to your business.
    Best Institute for Data Science in Mumbai which includes classroom and online training. Along with Classroom training, we also conduct online training using state-of-the-art technologies to ensure the wonderful experience of online interactive learning. Best Institute for Data Science

    ReplyDelete
  4. Data Science is the future of Artificial Intelligence. Therefore, it is very important to understand what is Data Science and how can it add value to your business.
    Data Science institute in Mumbai which includes classroom and online training. Along with Classroom training, we also conduct online training using state-of-the-art technologies to ensure the wonderful experience of online interactive learning. Data Science institute in Mumbai

    ReplyDelete
  5. I really appreciate this post. I’ve been looking all over for this! Thank goodness I found it on Bing. You’ve made my day! Thx again!

    Selenium Training in Electronic City

    ReplyDelete
  6. Thanks for the informative article. This is one of the best resources I have found in quite some time. Nicely written and great info. I really cannot thank you enough for sharing.
    Microsoft Azure Training in Electronic City

    ReplyDelete
  7. This comment has been removed by the author.

    ReplyDelete
  8. This comment has been removed by the author.

    ReplyDelete
  9. This comment has been removed by the author.

    ReplyDelete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Thanks for a marvelous posting! I seriously enjoyed reading it, you are
    a great author.I will be sure to bookmark your blog and will often come back in the future.
    I want to encourage yourself to continue your great job, have a
    nice weekend!
    angular js training in chennai

    angular js training in velachery

    full stack training in chennai

    full stack training in velachery

    php training in chennai

    php training in velachery

    photoshop training in chennai

    photoshop training in velachery


    ReplyDelete
  12. Hi
    How do I get to put a header color?

    ReplyDelete
  13. I am really enjoying reading your well written articles. It looks like you spend a lot of effort and time on your blog. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work. data science training in Hyderabad

    ReplyDelete
  14. Crypto-currency as a modern form of the digital asset has received a worldwide acclaim for easy and faster financial transactions and its awareness among people have allowed them to take more interest in the field thus opening up new and advanced ways of making payments. Crypto.com Referral Code with the growing demand of this global phenomenon more,new traders and business owners are now willing to invest in this currency platform despite its fluctuating prices however it is quite difficult to choose the best one when the market is full. In the list of crypto-currencies bit-coins is one of the oldest and more popular Crypto.com Referral Code for the last few years. It is basically used for trading goods and services and has become the part of the so-called computerized block-chain system allowing anyone to use it thus increasing the craze among the public, Crypto.com Referral Code.

    Common people who are willing to purchase BTC can use an online wallet system for buying them safely in exchange of cash or credit cards and in a comfortable way from the thousands of BTC foundations around the world and keep them as assets for the future. Due to its popularity, many corporate investors are now accepting them as cross-border payments and the rise is unstoppable. With the advent of the internet and mobile devices,information gathering has become quite easy as a result the BTC financial transactions are accessible and its price is set in accordance with people’s choice and preferences thus leading to a profitable investment with Crypto.com Referral Code Code. Recent surveys have also proved that instability is good for BTC exchange as if there is instability and political unrest in the country due to which banks suffer then investing in BTC can surely be a better option. Again bit-coin transaction fees are pretty cheaper and a more convenient technology for making contracts thus attracting the crowd. The BTC can also be converted into different fiat currencies and is used for trading of securities, for land titles, document stamping, public rewards and vice versa.

    Another advanced block-chain project is Ethereumor the ETH which has served much more than just a digital form of crypto-currency Crypto.com Referral Code and its popularity in the last few decades have allowed billions of people to hold wallets for them. With the ease of the online world,the ETH have allowed the retailers and business organizations to accept them for trading purposes, therefore, can serve as the future of the financial system.

    ReplyDelete
  15. Our full Lace Front Wigs are all hand made with a lace cap. They are manufactured with thin lace sewn on top of the cap. Individual hairs are then sewn onto the thin lace. Each lace wig has lace all around the unit which will need to be cut prior to securing the wig to your head. You will need to cut along the hairline around your entire head. By doing so, you will be able to wear your hair anyway you like. You can even style ponytails, up-dos, etc. Once the Lace Wigs is successfully applied, it will appear that all the hair is growing directly from your head!

    Lace front wigs are hand-made with lace front cap & machine weft at back. Lace front wigs are manufactured with a thin lace that extends from ear to ear across the hairline. When you receive the wig, the lace will be quite long in the front. Cut and style according to your preference, as you will need to apply adhesive along the front of the wig. Once the wig is applied, you will still have Lace Wigs with a very natural appearance.
    TeamWigz Provide the Best Lace Front Wigs and Lace Wigs in Johannesburg and South Africa.

    ReplyDelete
  16. This is an opportunity to identify them, and make their liberation part of the overall programme of change. Salesforce training in Hyderabad

    ReplyDelete
  17. Health Experts have proven that regular exercise coupled with a good diet allow you to live longer and healthier. In this busy day and age, not everyone has the time to go to the gym - resulting to a lot of overweight people that desperately need to exercise. A healthy alternative is for you to Buy Home Gym Equipments that you can store in your own home or even at your office. Here are some tips when buying home gym equipment.

    First, know your fitness goals and keep these goals in mind when you are buying home gym equipment. One of the biggest mistakes that people make is buying the biggest or trendiest fitness machine simply because they like how it looks. More often than not, these end up gathering dust in your storage rooms or garage because you never end up using them. It is important to take note of what particular type of physical activity you want or enjoy doing before you buy your exercise machine. If you are looking to loose a few pounds and you enjoy walking or hiking, a treadmill is the best option for you. If you are looking to tone your lower body while burning calories a stationary bike is your obvious choice. Similarly, Special Equipments for Core Strength Exercises, Strength Training Weight Vests, Core Strength & Abdominal Trainers, Home Cardio Training, Strength Training Power Cages, Strength Training Racks & More.

    Second, set aside a budget before Buying Home Gym Equipments. Quality exercise machines do not come cheap. They are constantly exposed to wear and tear when they are used properly. So, pick machines that are built to last and have passed quality certifications to get the most out of your money. If you are operating on a tight budget, think about investing in several weights, We can Provide you High Quality Home Gym Equipments at Very Low Prices for your Complete Uses: Core Strength Exercises, Strength Training Weight Vests, Core Strength & Abdominal Trainers, Home Cardio Training, Strength Training Power Cages, Strength Training Racks & More.

    Its the Right Time to Buy Home Gym Equipments for you at Very Low Prices.

    ReplyDelete
  18. 국내 최고 스포츠 토토, 바카라, 우리카지노, 바이너리 옵션 등 검증완료된 메이져 온라인게임 사이트 추천해 드립니다. 공식인증업체, 먹튀 검증 완료된 오라인 사이트만 한 곳에 모아 추천해 드립니다 - 카지노 사이트 - 바카라 사이트 - 안전 놀이터 - 사설 토토 - 카지노 솔루션.

    온라인 카지노, 바카라, 스포츠 토토, 바이너리 옵션 등 온라인 게임의 최신 정보를 제공해 드립니다.

    탑 카지노 게임즈에서는 이용자 분들의 안전한 이용을 약속드리며 100% 신뢰할 수 있고 엄선된 바카라, 스포츠 토토, 온라인 카지노, 바이너리 옵션 게임 사이트 만을 추천해 드립니다.

    ReplyDelete
  19. Gorilla Glue #4 is making a name for itself as one of the most potent strains in the world Buy Gorilla Glue Weed Strain and Buy Gorilla Glue Weed Online with bitcoin. Gorilla Glue #4 Buy Cannabis Online. It’s not uncommon for this strain to produce THC levels above 28% in optimal growing conditions. Great for those with severe pain conditions or folks looking to relax after a terrible workday, this isn’t a strain you’ll want to pass up. It may go by the name GG4 after a lawsuit from the makers of the actual glue, The Gorilla Glue Co - Gorilla Glue Weed For Sale.

    The Medical and Recreational Marijuana industry in Canada and the United States is growing at a rapid pace. Cannabis Health Home strives to be apart of this community that is growing to help people medicate naturally by supplying strains of the highest quality at the best current market prices. We take pride in our supply chain and take pride in serving complete discretion and satisfaction to our clients. Buy Gorilla Glue Online

    The Online Store of Cannabis Health Home procures the Best Quality Gorilla Glue Weed For Sale from reliable sources so that customers can easily buy them any time they need. All the products that are offered at Cannabis Health Home are of the highest quality. This can definitely provide people with the peace of mind that they can always have access to the freshest strains of cannabis every time they shop from Cannabis Health Home. The store also lets people Buy Cannabis Online With Bitcoin which makes it easier to make payments easily.

    Buy Gorilla Glue Weed Online or feel free to chat with our friendly budtenders who would be glad to assist you with any questions on our strains or products.

    ReplyDelete
  20. Oferecemos os melhores serviços para seguidores, curtidas, comentários e visualizações no Instagram. Os serviços são entregues de forma rápida, segura e por um preço honesto e barato.
    Todos os serviços são iniciados de forma automática e você pode fazer um teste grátis de seguidores, curtidas e visualizações no Instagram.

    O Go Followers surgiu em 2015 e durante alguns anos foi o melhor e maior site para comprar seguidores, curtidas e comentários no instagram. Com o passar dos anos evoluímos e em 2021 lançamos um novo site simples e intuitivo para aumentar a experiência dos mais de 150.000 clientes atendidos.

    Nossa ferramenta envia seguidores brasileiros reais e ativos em sua grande maioria para qualquer perfil do Instagram. Escolha o melhor pacote para comprar seguidores instagram de alta qualidade. Você poderá escolher alguns pacotes como seguidores com curtidas, seguidores masculinos, seguidores femininos e seguidores automáticos.
    Todos os pedidos são feitos de forma automática e iniciam em poucos minutos após a compra, tá esperando o que?

    ReplyDelete
  21. Ob Schmutz, hartnäckiger Belag, Schimmel, Vogelkot, Bakterien, Dreck, Staub oder unangenehme Gerüche, bei unserer Gebäudereinigung Hannover erwartet Sie ein glänzendes Ergebnis. Die Firma Immoclean reinigt Gebäude unterschiedlichster Art wie Schulen, Kindergarten, Arztpraxis, Altersheim, Museum, Disko, Hallen, Krankenhaus, Hotel, Baustelle, Restaurant, Kaufhaus, Supermarkt - Unterhaltungsreinigung Hannover.

    Vertrauen Sie dabei unserer Erfahrung, den vielen Referenzen und einer Kundenzufriedenheitsgarantie. Zuverlässigkeit und Qualität sowie eine absolut hygienische Reinigung können wir Dank unseren geschulten und mit modernstem Reinigungsequipment ausgestatteten Mitarbeitern gewährleisten - Broreinigung Hannover. In einer umfassenden und persönlichen Beratung erstellen wir sowohl für Klein- als auch Großkunden einen persönlichen Reinigungsplan ganz nach Ihren Wünschen. Bei Immoclean aus Hannover, der Nummer 1 unter den Reinigungsdiensten, Gebudereinigung hannover ist Ihre Firma oder Unternehmen in guten Händen. Vereinbaren Sie noch heute einen Termin mit unserem Reinigungsunternehmen, wir freuen sich auf Sie - Praxisreinigung Hannover!

    ReplyDelete
  22. Good article .. cause i get the solution of my problem here...

    ReplyDelete
  23. Customary visits recorded here are the most effortless strategy to value your vitality, which is the reason why I am setting off to the site regular, scanning for new, intriguing data. Many, much obliged SEO consultant

    ReplyDelete
  24. Thanks for posting the best information and the blog is very good and the blog is very good. data science colleges in kolkata

    ReplyDelete
  25. Thanks for posting the best information and the blog is very good.data science training in ahmedabad

    ReplyDelete
  26. Thanks for posting the best information and the blog is very good.ai courses in kolkata

    ReplyDelete
  27. Thanks for posting the best information and the blog is very good.cyber security colleges in kolkata

    ReplyDelete
  28. Thanks for posting the best information and the blog is very good.ethical hacking institute in ahmedabad

    ReplyDelete
  29. FMWhatsApp - An Alternative to WhatsApp

    If you want to use WhatsApp in a more secure way, FMWhatsApp Apk is the perfect option. Its unique features make it the most popular alternative to official WhatsApp. This application offers several advantages over the official version, including anonymous messaging and calling. Users can even send one-time text messages by simply clicking on the 3 dots in the upper-right corner of the app. After clicking the "Message a number" link, they can enter the recipient's number and send a text message.

    FMWhatsApp is a modified version of the popular text-messaging app. It is known as a "MOD" because it comes with features that the regular version doesn't have. This app was developed by FM Mods, a community of developers. This mod allows users to customize chats and apps. It also fixes many bugs that plague the original app. It is an incredibly useful and innovative application for Android, so make sure you download it today!

    FMWhatsApp is also great at protecting your privacy. The app hides the blue ticks on the status bar so that other users won't know whether you're typing or recording. Another great feature is its ability to send large files. If you need to talk to two people at once, FMWhatsApp is a great choice. You don't have to worry about your privacy with this app.

    You can customize and personalize the application for your needs by downloading FMWhatsApp. The latest version has more than 50 new features, making it an excellent alternative to WhatsApp. It's easy to customize and enjoy a more customized experience. There are many other benefits to using this alternative. Its new feature allows you to set the aeroplane mode on your phone to avoid interruptions from other users. The app's newest version even lets you set your internet connection on airplane mode.

    The update has several new features. The app has a cleaner interface. It's also much easier to use. The new FMWhatsApp.com logo is visible in the app's top right corner. It's a great addition to the app, and it makes it easier for users to keep their information private. However, it is not an ideal option for people who are sensitive about their privacy.

    FMWhatsApp is an effective alternative to the official application. Its user interface is sleek and simple. The app is free to download, and you can change the theme whenever you like. You can even customize the icon of the app by changing its color. This allows you to protect your account and prevent unwanted visitors from viewing your profile. If you're a fan of FMWhatsapp, you'll love its new features!

    ReplyDelete
  30. Thanks for posting this info. I just want to let you know that I just checked out your site and I find it very interesting and informative. I can't wait to read lots of your posts.
    data analytics course in hyderabad

    ReplyDelete
  31. Check out today’s coronavirus live update, the availability of the nearest hospital ICU bed, and the ambulance contact number in Covid Surokkha. Visit: ambulance service in dhaka

    ReplyDelete
  32. Diseñamos la página web para que tu empresa tenga una imagen digital profesional 24/7 y sea más fácil que te ubiquen online, puedan conocer tu oferta de productos, servicios, que logren contactarte de una forma más rápida y fácil.
    Nuestras páginas web son visualmente atractivas, tienen un diseño web responsive para ser visualizadas en un dispositivo móvil, lo que permite una experiencia de usuario agradable, intuitiva, simple, rápida y con usabilidad. Están optimizadas al SEO para ser leídas con facilidad por los motores de búsqueda como Google y ayudar al posicionamiento de tu contenido con las palabras clave con las que deseas darte a conocer.
    Al tener una página web de calidad te diferenciarás de la competencia al posicionarte en comparación con los que no tienen presencia digital, además de que atraer mayor tráfico a tu sitio web y permitirte mayor exposición que puede verse traducida en convertir a los visitantes en clientes e incrementar tus ventas. posicionamiento web madrid

    ReplyDelete
  33. superslotv9.netเว็บเกมส์เกมออนไลน์ สล็อตออนไลน์ (Slot Online) คาสิโนออนไลน์ (Casino Online) ที่รวมเกมส์เดิมพันแบบออนไลน์ทั้งหมดไว้ในที่เดียว ครบทุกค่าย ครบทุกเกมส์

    ReplyDelete
  34. slotpg.casino web slot พีจี เว็บที่ดีที่สุด มีความมั่นคงปลอดภัย 100%

    เข้าเล่นเกม Auto PG Slot สล็อตออนไลน์ อันดับ 1

    ReplyDelete
  35. I really like reading a post that can make people think.pg vip

    ReplyDelete
  36. I wish for to subscribe for this blog to get newest updates, so where can i do it please help out. ติดต่อ 789bet

    ReplyDelete
  37. Servicenow is one of the most demanded courses, we can learn servicenow online, there areServicenow training online instituteswith certifications and placement assistance

    ReplyDelete
  38. Thanks for giving me the opportunity to talk about a Data science course. For the Best career in Data science, I recommend Skillslash is recognized as the best data science institute in Hyderabad. We cover all the essential topics in data science like R, Python, Machine Learning, and Deep
    Learning, Tableau, etc.

    ReplyDelete
  39. I really enjoyed while reading your article, the information you have mentioned in this post is really good. I am waiting for your upcoming post.
    eMexo Technologies is an IT Training Institute in Electronic City Bangalore. They provide Microsoft Azure Certification Hands on Training with Experienced Trainers. They also provide doubt clarification and best training institute in electronic city Bangalore.

    Microsoft Azure Training in Electronic City Bangalore
    AWS Training in Electronic City Bangalore
    Devops Training in Electronic City Bangalore

    ReplyDelete
  40. As we all know, on Thursday, we will celebrate Republic Day. There will be celebrations around the country. Choose which wishes to send and how to send them to the chats on your list. On this page, we have fantastic pictures related to Happy Republic Day 2023, 26 January Wishes, Quotes, and SMS.

    The IGNOU Entrance Result 2023 for B.ed, Ph.D., and BSC are currently available on the official website. The B.ed entrance test for this session was held on January 8 by IGNOU. The IGNOU Entrance Result 2023 for the B.ed, Ph.D., and BSC programs will be released in February 2023. The selection of students for the B.ed, Ph.D., and BSC programs will be based on the entrance exam. In this post, students may find details on the IGNOU Entrance Result, including the release date, the admissions procedure, and instructions for checking their results.

    ReplyDelete
  41. The AP Police Constable Result 2023 Answer key, Cut off, and Merit list is on the official website. Candidates for the Police Constable position will be chosen for the next selection round based on the AP Police Constable Result 2023.

    The CGBSE Exam Admit Card 2023 will be made available online for the 10th and 12th grades by the Chhattisgarh Board of Secondary Education. The CGBSE Exam Admit Card 2022 can be downloaded by students who will be taking the Secondary or Intermediate exam by entering correct login information, such as their Registration Number and Date of Birth.

    The BRABU TDC Part 3 Result 2023 for Bachelor of Arts, Science, and Commerce will see released in the first week of February 2023. Everyone who took the exam will be able to view their results by going to the official website, https://www.brabu.net/. Soon after release, a direct link will be provided below to download and view the BRABU TDC Part 3 Result 2019-22.

    ReplyDelete
  42. Candidates are informed that the CSBC and Non-CSBC exams for distance education will be held from January to February 2023. The Alagappa University Distance Education Hall Ticket 2023 is available below; scroll down to get it. Students are advised that they won’t receive a physical copy of their hall ticket; instead, everyone must download it from the official website and print a copy to bring to the appropriate exam centre.

    Kerala SET 2023 Results The official website will soon post links to the Kerala SET merit list and cut-off scores. The official website now has the Kerala SET Notification available. Results for the Kerala SET 2023 will be made public soon. Candidates who took the exam can view their Kerala SET Results 2023 on the official website of the LBS Centre for Science and Technology. The LBS Centre for Science and Technology is the authorized administrator of the Kerala State Eligibility Test (KSET), according to the Kerala State Government. To understand more about the KSET Result 2023, keep reading.

    Download links for the TSPSC AEE Results 2023 answer key, cutoff scores, and merit list will be made available on the official website. For the students who had been waiting impatiently for the results, the TSPSC released the AEE Results. Visit the official website at www.tspsc.gov.in to see the TSPSC AEE Results 2023. This article will teach you more about the TSPSC AEE Results, Answer Key, Cut off marks, Merit list, and other topics.

    The Jammu & Kashmir Public Service Commission will publish the JK SI Result 2023 by the last week of January 2023. When the JKSSB officials will publish the JKSSB SI Result 2023 at jkssb.nic.in/ has not yet been determined. Some trustworthy sources indicate that the evaluation of candidates’ responses has already been finished, and it is anticipated that the JKP SI Result 2023 would be released very soon.

    GDS Recruitment 2023 Vacancy More information, including the application form and eligibility criteria, is available in the article. Check out the article for more information about the Indian Post Office’s GDS Recruitment 2023 Latest Vacancy – State-Wise Application Form.

    A direct link to download and verify the Rajasthan BSTC 1st Year Result 2023 will be enabled in the table below as soon as it is officially declared. Many candidates took part in the exam, and they are all eagerly awaiting the release of the Rajasthan DElEd Result 2023 for first year. To download or view the results, you must have valid login information, such as a User Name and Password.

    ReplyDelete
  43. This comment has been removed by the author.

    ReplyDelete
  44. Thank you for such a wonderful article great

    ReplyDelete
    Replies
    1. Baclink


      ----------------------------------------------

      All candidates who sat the exam between September 15, 2022, and October 14, 2022, will be able to access the results of the 2nd semester undergraduate (degree) exam online from Acharya Nagarjuna University, Guntur. ANU Degree 2nd Semester Results 2023 Mananbadi are anticipated to be made public this evening.

      The NDA Admit Card 2023 Download Link will be made available online by the Union Public Service Commission (UPSC), most likely in the first week of April 2023. On the official Union Public Service Commission (UPSC) online domain, the admission cards will be accessible in PDF format.

      A 3D global gangster game called Mayanagari – Mobile Gangster will probably be published for Android very soon. You can play the Mayanagari Game APK by downloading it after it becomes available for Android devices on the PlayStore, so if you’re seeking for a link to it, you should be aware of that.

      LNMU Part 2 Result

      Aspirants who participated in the first stage of the selection process should be aware that the Rajasthan High Court Answer Key 2023 for the position of Lower Division Clerk will be officially released in online mode. Although it is highly anticipated that a direct link to download PDF may be activated in the third week of the current month, this has not yet been officially announced.

      Applicants who took the written test to fill the 2756 Lower Division Clerk positions are advised that a direct link to check the Rajasthan HC Results 2023 will be provided below once they are made available on the official website at hcraj.nic.in. We have learned from our trustworthy sources that the evaluation will be finished by the second or third week of next month, and the results will be released a few days later.

      Delete
  45. The National Testing Agency will announce the JEE Main Session 2 Result 2023 on one of its result portal @ https://ntaresults.nic.in/ and on the JEE Main official website, which is available at https://jeemain.nta.nic.in/. Due to the fact that the Session 1 Exam result was made public barely five days after the exam’s start, it is anticipated that the JEE Main Result 2023 Session 2 would be available on April 20, 2023.

    The RGUHS, where thousands of students are seeking MBBS degrees, is associated with dozens of colleges. If you attend one of these universities, you should be aware that the EMS Results 2023 will soon be made available on the official website, where students may access them by entering their valid login information. When the link to check the EMS RGUHS Results is active following, be sure to bookmark this website and return frequently to acquire the most recent information.

    The undergraduate and graduate programmes of Thiruvalluvar University were offered offline from December 8, 2022, to January 7, 2023, at various testing locations. According to our trustworthy sources, the assessment procedure is virtually over, and Thiruvalluvar University Result 2023 will be formally issued very soon. Candidates who take the test can use the Hall Ticket number to access the link to the result check.

    The second or third week of May 2023 might see the release of the Kerala Plus One Result 2023. Students who participated in the +1 Exam, which was held from March 10 to March 30, 2023, are awaiting the results’ publication date. Students who participated in the 11th Class test are notified that a direct link to see the DHSE Kerala +1 Result 2023 is accessible below as soon as it becomes available at https://keralaresults.nic.in/.

    ReplyDelete
  46. The TS SSC Results 2023 will most likely be made public by BSE Telangana on May 21st, 2023 at 11:00 am, or earlier because the review procedure is anticipated to take four weeks. Applicants who took the Secondary School Certificate test should be aware that the BSE Telangana SSC Results 2023 will be published at https://bse.telangana.gov.in/, and that a direct link to download and verify the results will be made accessible here as soon as it is made public.

    The Class IX Examination, which lasted for three hours and fifteen minutes, was held on April 11 and 12, 2023, for students enrolled in various government schools in Jharkhand. Almost 5 lakh students took the exam, and they should all be aware that the JAC Class 9 Result 2023 will only be made available on the Jharkhand Academic Council’s results website at https://www.jacresults.com/.

    Many candidates participated in the exam and are now eagerly awaiting the release of the hall ticket. Candidates should be aware that as soon as the AEEE Hall Ticket 2023 is officially released. The Amrita Engineering Entrance Exam will be conducted by Amrita Vishwa Vidyapeetham in the Computer Based Test mode.

    If you are one of the thousands of applicants who took the entrance exam to enroll in the Services Preparatory Institute, Aurangabad, Maharashtra and want to join the Defense Service as an officer, you should know that as soon as the SPI Aurangabad Result 2023 is made public, we will activate a direct link for downloading the merit list and check the results that show who has been selected for an interview.

    A total of 5 lakh pupils enrolled in Andhra Pradesh’s different government schools took part in the secondary school certificate test, which was held from March 3 to March 18, 2023. The Andhra Pradesh Board of Secondary Education has not yet formally announced when they would disclose the AP SSC Exam Results, however, it is anticipated that this will happen in the last week of May 2023. This is because the assessment procedure is anticipated to take 5 to 6 weeks.

    For admission to the Bachelor of Education (B. Ed) programme at various institutions and universities throughout the state, the State Common Entrance Test Cell, Maharashtra, administers the MAH BEd CET, a state-level entrance test. The MAH BEd CET Admit Card is a vital document that applicants must bring to the testing facility as identification and authorization to sit for the exam.

    ReplyDelete
  47. 媮從暴虐黑幫老大鄧波兒的 儅晚史都姆返家,竟遭惡徒滅門,太太儅場被殺其子尚尼幸存,Dramasq 史都姆在昏迷七年後,及至出院後,會同好友歐麥裡及護士展

    ReplyDelete