How to set font in php

藏色散人
Release: 2023-03-08 06:34:01
Original
5419 people have browsed it

php method to set the font: First create a PHP sample file; then wrap the code into a SPAN or DIV tag, and apply some CSS styles to it to change the color and size of the font.

How to set font in php

The operating environment of this article: Windows 7 system, PHP version 5.6, DELL G3 computer.

How do I change the color and font size of my PHP?

I've been looking for ways to change the size and font of the PHP code output, but can't find a way that doesn't cause errors. I want all the following php code to appear white and enlarged:

<?php
  if (isset($_SESSION[&#39;something&#39;])) {
    echo "Welcome " . $_SESSION[&#39;something&#39;] .  ", <a href=&#39;something.php&#39;>something</a>";
  }
?>
Copy after login

It would be great if someone could help me achieve this. So far I've tried font color and color span with no success.

Implementation method:

Wrap the code into SPAN or DIV tags and apply some CSS styles to it.

For example:

<?php
        if (isset($_SESSION[&#39;something&#39;])){
            echo &#39;<span style="color: white; font-size: 20px;">Welcome &#39; . $_SESSION[&#39;something&#39;] .  &#39;, <a href="something.php">something</a></span>&#39;;
        }
?>
Copy after login

Recommended: "PHP Video Tutorial"

The above is the detailed content of How to set font in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!