Friday, September 5, 2025
HomeLanguagesHow to print on browser’s console using PHP ?

How to print on browser’s console using PHP ?

The echo command is used in PHP to print any value to the HTML document. Use <script> tag inside echo command to print to the console.

Syntax:

echo "This is neveropen Tutorial.";
echo variable_name;

Note: The echo command will print the HTML document. This feature can be used to put JavaScript statements in the HTML page.

Example 1: This example illustrates how to use echo keyword to display content.




<?php 
  
// Declare variable and store the string
$var1 = "neveropen";
$var2 = "A computer science portal";
  
// Use echo keyword to display result
echo $var1 . "\n" . $var2 ;
?>


Output:

neveropen
A computer science portal

Dot ‘.’ operator is used to joining two strings in PHP. You can print multiple variables by joining with a dot ‘.’ operator. The echo keyword is used to display the values of variables var1 and var2 to the HTML document which is readable by the browser normally. This property can be taken into an advantage in writing to JavaScript console using PHP. The JavaScript code can be written in the echo section and taken to the HTML document.

Example 2: This example illustrates how to print a string into the console.




<?php 
  
// Use echo keyword to display result
echo "Open console and check";
  
echo '<script>console.log("Welcome to neveropen!"); </script>';
?>


Output:

Now, we will see how to write the value of PHP variables to the console line.

Example 3: This example illustrates how to print PHP variables value to the console.




<?php 
  
// Declare variable and store the string
$var1 = "neveropen";
$var2 = "A computer science portal";
  
echo "Open console and check";
  
echo '<script>console.log("'$var1 . "\n" . $var2'"); </script>';
?>


Output:

RELATED ARTICLES

Most Popular

Dominic
32267 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6635 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7026 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6720 POSTS0 COMMENTS