<!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>
<?php
header('Content-type: text/css');
/*
Hier werden Variablen und ggf.
Algorithmen festgelegt.
*/
?>
body {
background-color: #ffffff;
color: #000000;
}
<!DOCTYPE html>
<html>
<body>
<style>
.mycssquote{
color: white;
background: black;
border:1px solid red;
padding: 5px;
}
</style>
<?php
echo "Welcome to Softhunt.net";
echo "<p class="mycssquote">This is a text in PHP echo.</p>";
?>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<style>
.mycss{
color: white;
border:1px solid #000;
background: black;
padding: 10px;
}
</style>
<?php
echo "Welcome to Softhunt.net";
echo "<p class='mycss'>This is a text in PHP echo.</p>";
?>
</body>
</html>