Grafische interesse |
|
Ah, ik zou het oplossen door een functie showContent te schrijven:
<?php
function showContent(){
?>
<p class="kopgroot">Contact</p>
<p class="kopgroot"><img src="afbeeldingen/contactbanner.png" alt="About" width="683" height="103" /></p>
<p class="hoofdtekst"> </p>
<p class="hoofdtekst">Je kan mij contacteren via onderstaand formulier:</p>
<p class="hoofdtekst"> </p>
<form method="post" name="form1" class="hoofdtekst" id="form1" action="index.php?pagina=post">
<label class="hoofdtekst"><span class="kopklein">Naam<br />
</span>
<input name="Naam" type="text" id="Naam" size="22" />
</label>
<label><span class="kopklein"><br />
<br />
Email<br />
</span>
<input name="email" type="text" id="email" size="22" />
</label>
<p>
<label><span class="kopklein">Bericht</span> <br />
<textarea name="bericht" cols="35" rows="6" id="bericht"></textarea>
</label>
</p>
<p>
<label>
<input type="submit" name="verzenden" id="verzenden" value="Verzend!" />
</label>
</p>
</form>
<?php $title = 'Rutger Bevers - Contact'; ?>
nog wat html ofzo
<?php
}
?>
<?php function showContent(){ ?> <p class="kopgroot">Contact</p> <p class="kopgroot"><img src="afbeeldingen/contactbanner.png" alt="About" width="683" height="103" /></p> <p class="hoofdtekst"> </p> <p class="hoofdtekst">Je kan mij contacteren via onderstaand formulier:</p> <p class="hoofdtekst"> </p> <form method="post" name="form1" class="hoofdtekst" id="form1" action="index.php?pagina=post"> <label class="hoofdtekst"><span class="kopklein">Naam<br /> </span> <input name="Naam" type="text" id="Naam" size="22" /> </label> <label><span class="kopklein"><br /> <br /> Email<br /> </span> <input name="email" type="text" id="email" size="22" /> </label> <p> <label><span class="kopklein">Bericht</span> <br /> <textarea name="bericht" cols="35" rows="6" id="bericht"></textarea> </label> </p> <p> <label> <input type="submit" name="verzenden" id="verzenden" value="Verzend!" /> </label> </p> </form> <?php $title = 'Rutger Bevers - Contact'; ?> nog wat html ofzo <?php } ?>
en dan op de plaats waar je je content wil die functie aanroepen. Zoals je ziet zorg ik er ook voor dat niet alles phpcode word maar overzichtelijke html met stukjes php erin. Ik vind dit veel overzichtelijker + naar het schijnt zal dit ook sneller werken doordat de phpcompiler niet al die tekst hoeft te overlopen. |