I have been using PHP sparsely on my website for some time now, but I would like to become more efficient and therefore have a couple questions. They will stream in slowly, bu for right now...
Currently I use the <?php tag many times on a page. Is there a way to get rid of it? Example:
<?php
require('./cutenews/captcha/php-captcha.inc.php'); //Change the path to your needs
?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>The Kudzu Gazette</title>
<?php
include("./header_home.php");
?>
<!-- Content Here -->
<?php
include("cutenews/show_news.php");
?>
<!-- End Content -->
<?php
include("./footer.php");
?>
Thanks. Sorry for my newbieness