HTML PHP dahil

0 Cevap php

Yani bu index.php sayfa var:

<?php 
 include main.php; 
?>

<html>
 <head>
  <link rel="stylesheet" type="text/css" href="main.css" />
  <title>MySite</title>
 </head>
 <body>
  <a id = "submit" href="submit.php">Submit</a>
  <br /> 
  <br />
  <br />
  <br />
  <br />
  <p id = "playing">Message</p>
  <?php 
   getMessage();
  ?>
 </body>
</html>

Dosya main.php bu gibi görünüyor şunlardır:

<?php
 function getMessage()
 {
  echo "Test";
 }
?>

Ama yankılanan değildir. Neden?

0 Cevap