php get page
Posted: Sat Sep 03, 2005 7:30 pm
is there a php get page function like they use in Wordpress?
right now i'm declaring things as variables??
and then in my index page calling the header.php
the problem is that i can't use standard html without having to erase all the quotation marks.
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
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