Answers for "use php code in css"

PHP
2

css php

<?php
  header('Content-type: text/css');
  /*
    Hier werden Variablen und ggf.
    Algorithmen festgelegt.
  */
?>

body {
  background-color: #ffffff;
  color: #000000;
}
Posted by: Guest on June-16-2020
0

how to use css in php example

<!DOCTYPE html>
<html>
<body>

<?php
echo "Welcome to Softhunt.net";
echo "<p style='color:red;'>This is a text in PHP echo.</p>";
?>

</body>
</html>
Posted by: Guest on December-28-2021

Browse Popular Code Answers by Language