0
echo php snippet not working when putting and working on my computer
I have installed warp51 but when I load <html> <?php echo "4"; ?> nothing loads in webpage like 4 why?
3 Réponses
+ 1
I think you have written the code the wrong way that is why it has refused to display
+ 1
<html>
<head>
<title> test </title>
</head>
<body>
<?php
echo "4";
?>
</body>
</html>
0
thanks guys let me try again