94 Posted Topics

Member Avatar for tarunkhatri
Member Avatar for innocent.boys

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]

Member Avatar for edwinhermann
0
3K
Member Avatar for innocent.boys

PHPshadow ([url]www.phpshadow.com[/url]) is another one and supports PHP5.

Member Avatar for hemgoyal_1990
0
322
Member Avatar for surf

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]

Member Avatar for edwinhermann
0
125