94 Posted Topics
Re: Shouldn't pg_exec() be pg_execute() ? | |
Re: Do the pages welcome.php, view.php, payment.php etc exist? You need to create them too. By the way I noticed a few errors: [CODE=php]<li><a href="direct.php?pagepage=view">Call History</a></li>[/CODE] should be [CODE=php]<li><a href="direct.php?page=view">Call History</a></li>[/CODE] and [CODE=php]<li><a href="direct.php?changepass.php">Change Password</a></li>[/CODE] should be [CODE=php]<li><a href="direct.php?page=changepass">Change Password</a></li>[/CODE] | |
Re: PHPshadow ([url]www.phpshadow.com[/url]) is another one and supports PHP5. | |
Re: Just a tip: You should be careful when outputting strings inside HTML. You should always use htmlspecialchars() to ensure that special HTML entities are properly encoded. Consider using: [code=php]echo '<option value=\"'.htmlspecialchars($key).'\">'. htmlspecialchars($value).'</option>\n';[/code] |