Show captcha.php syntax highlighted
<?php
require_once ('core/engine.php');
$Config->CONNECT();
Session :: create();
Renderer :: setFlag("output", false);
require_once ("styles/index_header.php");
?>
<div style="color: #333; font-weight: bold;">
<?=$XCS->localeString('captcha','verify');?>
<p style="text-align: center;">
<img src="<?=$Config->getMaster()?>visual-captcha.php" width="200" height="60" alt="Visual CAPTCHA" />
</p>
<form style="text-align: center;" action="#" method="post" onsubmit="VerifyCode(); return false">
<input type="text" id="verify_code" name="verify_code" size="5" maxlength="5" value="" />
<input type="submit" value="<?=$XCS->localeString("captcha","verifybutton")?>" onclick="this.value='<?=$XCS->localeString("captcha","processing")?>'" />
</form>
</div>
<?
Event :: Call("onPrintContent");
Event :: Call("onExit");
Event :: Call("onDisconnect");
DB :: Close();
?>
<? require_once ("styles/index_footer.php");?>
See more files for this project here