How to display string values within a table using PHP ? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 7 Likes Like Report A table is an arrangement of data in rows and columns, or possibly in a more complex structure. Tables are widely used in communication, research, and data analysis. Tables are useful for various tasks such as presenting text information and numerical data.Tables can be used to compare two or more items in the tabular form layout.Tables are used to create databases. Approach: Use HTML table elements inside PHP echo to print the string values in a table. We can write HTML tags inside a PHP script to display the output rendered as an HTML component. PHP code: PHP <?php // Declaration of strings $var1 = "Geeksforgeeks"; $var2 = "Priyank"; // Display HTML table using PHP echo // Use $variable_name to use a string // in code echo "<table border=1 cellspacing=1 cellpadding=1> <tr> <td><font color=green>$var1</font></td> <td>is best learning platform</td> </tr> <tr> <td><font color=green>Written by</font></td> <td>$var2</td> </tr> </table>"; ?> Output:<table border=1 cellspacing=1 cellpadding=1> <tr> <td> <font color=green> Geeksforgeeks </font> </td> <td> is best learning platform </td> </tr> <tr> <td> <font color=green> Written by </font> </td> <td> Priyank </td> </tr> </table> If we run this code on a local server then the output will display in form of a table. Create Quiz Comment M mishrapriyank17 Follow 7 Improve M mishrapriyank17 Follow 7 Improve Article Tags : Web Technologies PHP PHP-string PHP-function PHP-Questions +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like