Computer Science, asked by vp8530637494, 1 month ago

which keyword is used to display text on a PHP web page​

Answers

Answered by divyanshigola17
2

Answer:

The <b> (bold tag) tag in HTML is used to display the written text in bold format.

Answered by sarahssynergy
1

"Echo" keyword.

Explanation:

  • Echo keyword followed by the text under " " or String is used to display text on a PHP web page.
  • To display multiple string arguments we use the comma(,) operator.

For example,

<?php

   echo "This is an example to display text on a PHP web page.";

?>

Similar questions