|
|||
Need Help With My Script
This script is suppose to check the verification code
1. if exist in db & has not used for registration, direct to registration.php 2. if exist in db & has been used, die ('Code has expired') 3. if does not exist, die ('invalid code'). My problem is after I tried to enter a valid code, this error came out Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\Apache Group\Apache2\htdocs\project paper\mogec project\ver.php:2) in C:\Program Files\Apache Group\Apache2\htdocs\project paper\mogec project\ver.php on line 42 What is wrong with my header?? The code goes <?php // Connects to your Database mysql_connect("localhost", "root", "admin") or die(mysql_error()); mysql_select_db("project_db") or die(mysql_error()); //if the login form is submitted if (isset($_POST['submit'])) { // if form has been submitted // makes sure they filled it in if(!$_POST['code']) { die('You did not fill in the code.'); } // checks it against the database $check = mysql_query("SELECT * FROM code WHERE code_string = '".$_POST['code']."'")or die(mysql_error()); //Gives error if user doesn't exist $check2 = mysql_num_rows($check); if ($check2 == 0) { die('Invalid code'); } while($info = mysql_fetch_array( $check )) { //gives error if code has been used if ($info['code_status'] != "") { die('Verification Code Has Expired'); } else { //then redirect them to the members area header("Location: members.php"); } } } else { // if they are not logged in ?> <form action="<?php echo $_SERVER['PHP_SELF']?>" method="post"> <table border="0"> <tr><td colspan=2><h4>Enter verification Code</h4></td></tr> <tr><td>Code:</td><td> <input type="text" name="code" maxlength="40"> </td></tr> <tr><td colspan="2" align="right"> <input type="submit" name="submit" value="Login"> </td></tr> </table> </form> <?php } ?> |
![]() |
«
Previous Thread
|
Next Thread
»
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Looking for MLM Php script | masrule | Website Programming | 0 | 24-01-2007 01:56 PM |
| script | nurulmajdi | Website Programming | 12 | 16-02-2004 04:03 PM |
| Help Me With My First Php Script !!!! | mya | Website Programming | 17 | 24-01-2004 06:12 PM |
| my script can't run..why? | therion | Website Programming | 7 | 23-10-2003 05:14 PM |
| cgi script | Seman | Website Programming | 6 | 16-09-2003 05:46 PM |
All times are GMT +8. The time now is 05:46 PM.
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.









Linear Mode

