right now i'm declaring things as variables??
Code: Select all
<?php
$header = (" blah blah");
echo $header;Code: Select all
<?php
include 'winamp/header.php';
?>i noticed that wordpress has a diff funct and that it's not entirely php, just fancy html ... so is there a way in php to simply call a .php page that has no php within it?
ex:
index.php calls my winamp.php file to insert the current track playing into the index.php file. but the winamp.php is just straigh html.
HELPA