I have a php script which contains few variables e.ct "welcome.php"
<?php
$hello = '<p class="fontBlack15">we will collect your rent to co-inside with your student loan payments. </p>';
?>
In another php script "hello.php" i have:
<?php include 'welcome.php';?>
<div id="header"><? echo $hello; ?></div>
This doenst work... and i dont really know much why?
Thank you