The problem is that when I include my template.php file into my index.php file nothing is included even though php actually finds the file (template.php).
When I look at the source code of my index.php file from my web-browser there is nothing from the template.php file even though it is mostly...
The problem is that when I include my template.php file into my index.php file nothing is included even though php actually finds the file (template.php).
When I look at the source code of my index.php file from my web-browser there is nothing from the template.php file even though it is mostly...
I would like to add some HTML code in my php file (index.php).
The problem is that all I've seen on the web to write some HTML code inside the php file is to do something like this:
<?php
if (!file_exists('somefile.php'))
{
?>
<script type="text/javascript">
alert("Doesn't Exist")...