
sean14592
Members-
Posts
157 -
Joined
-
Last visited
Everything posted by sean14592
-
ok, that works now, the pass in db is same as the one entered in pass, all works. Though for some reason the below code is getting password as NULL. <?php mysql_connect($db_host,$db_username,$db_password) or die(mysql_error()); mysql_select_db($db_database) or die(mysql_error()); $username = $_POST['username']; $password = $_POST['password']; $secpassword = md5("2392j3k2js21".$password.$username); // Retrieve all the data from the "example" table $result = mysql_query('SELECT * FROM owners WHERE username="$username"') or die(mysql_error()); // store the record of the table into $row $row = mysql_fetch_array($result); // Print out the contents of the entry if ($row['password'] == $secpassword){ echo ("Login success!"); } else { echo ("Login Error!<br>Pass from mysql: ".$row['password']."<br>Pass from form: ".$secpassword." <br> Username entered in form".$_POST['username']."<br>"); } ?> Cheers Sean
-
EDIT: just read last post, let me check if it works then ill update. cheers sean
-
ok, well I have compared the real pass entered on the site with the one found in the database and they are different... entered: 7674e5844a670dfcf2d067dd88b3**** found in database: 8b53602b51cbc88e7ce34**** As you can see they are differen, looks like we have found our problem, but now why, Here is my code fore my registration script as it may help: http://pastebin.com/m6b3eda57 Cheers Sean
-
Yep, it echos the username that was entered correctly, no problem there. cheers sean
-
Ok, here is my full page..... http://pastebin.com/m119e1f75 Ok, this is what I get when entering any password with a real username: Login Error! Pass from mysql: Pass from form: 7674e5844a670dfcf2d067dd88b36a5d Hope this helps Cheers Sean
-
lol, just did that as you said it,I got.... Login Error! Pass from mysql: Pass from form: 7674e5844a670dfcf2d067dd88b36a5d This is weird. sean
-
Thanks Crayon Violent , After reading that the problem seems to be more clear, Do you know exacly what code is producing this error? cheers sean
-
ok, I have now made it all $secpassword, Though now none of my passwords work, lol, Anyone find anything else? Cheers Sean p.s I have also tried LooieENG's code, and yet he smae thign hapens, no passes work.
-
Hi, For some reason every time I go to login with any password I can get through, so even if the password is not the one for my account I can still see the message "Login Succesful". <?php mysql_connect($db_host,$db_username,$db_password) or die(mysql_error()); mysql_select_db($db_database) or die(mysql_error()); $username = $_POST['username']; $password = $_POST['password']; $secpass = md5("2392j3k2js21".$password.$username); // Retrieve all the data from the "example" table $result = mysql_query('SELECT * FROM owners WHERE username="$username"') or die(mysql_error()); // store the record of the table into $row $row = mysql_fetch_array( $result ); // Print out the contents of the entry if ($row['password'] == $secpassword){ echo ("Login success!"); } else { echo ("Login Error!"); } ?> Cheers Sean
-
umm, I dont understand wha i doig wrong then cause here's my full code... http://pastebin.com/m233c2bfe Cheers Sean
-
[SOLVED] Image buton sending siza variables
sean14592 replied to sean14592's topic in PHP Coding Help
thanks, topic solved! cheers again. sean -
I have registration form that when submited it should take me to: http://mysite.com/index.php?page=oregpro but instead it is taking me to.... http://mysite.com/index.php?image.x=95&image.y=22 The code for the form tag is... <form action="http://www.mysite.com/index.php?page=oregpro" name="o_register" id="o_register" > The code for the submit buttom is... <input type="image" src="style/form/iagree.gif" name="image" > Cheers Sean
-
Hi, Ummm, I have used the code above, though now it won't even check the length of the first password field. ????, lol, thanks anyway. Sean
-
HI, I want to make sure that two password fields are checked that the value of both of them are the same, I have managed to do this but if you go back to edit password field 1 to something diffeent than before (so its not the same as pass field 2) they both still have no errors to display to user. So I need to somehow make it keep checking everytime the pass field 1 is changed to update pass field 2. my current JS: function checkPassword(whatYouTyped) { var fieldset = whatYouTyped.parentNode; var txt = whatYouTyped.value; var psstxt = whatYouTyped.value; if (txt.length > 3 ) { fieldset.className = "welldone"; } else { fieldset.className = ""; } } function checkPassword2(whatYouTyped) { var fieldset = whatYouTyped.parentNode; var txt = whatYouTyped.value; if (document.o_register.password.value == document.o_register.password2.value ) { fieldset.className = "welldone"; } else { fieldset.className = ""; } } Cheers Sean
-
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
ok, sorted, thanks everyone. It was a bug in my ftp client. It wasent re uplaoding. lol cheers sean thanks every1. -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
wtf, I have cleared cach and tried in IE and firefox, could it be my host? -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
k, new code.... <?php // start the PHP if (isset($_GET['page'])){ // if the variable 'page' is set in the URL do this: if ($_GET['page'] == 'news'){ // if the variable 'page' is equal to 'news' ( /index.php?page=news ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'something'){ // if the variable 'page' is equal to 'something' ( /index.php?page=something ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'properties'){ // if the variable 'page' is equal to 'properties' ( /index.php?page=properties ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } } else { echo ("hi!"); // or something to this extent, I dont think this works out of the HTML <head> tags. } // end the PHP ?> though, I still dont know how to fix this first error... Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/holiday/public_html/new/index.php on line 23 Cheers Sean -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
hmmm, he is the full page... http://pastebin.com/m361bbea3 Cheers Sean -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
Line 23 is... echo ("<div id=\"main\"><div id=\"column\"><div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); Cheers Sean -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
yep here it is.... <?php // start the PHP if (isset($_GET['page'])){ // if the variable 'page' is set in the URL do this: if ($_GET['page'] == 'news'){ // if the variable 'page' is equal to 'news' ( /index.php?page=news ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'something'){ // if the variable 'page' is equal to 'something' ( /index.php?page=something ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'properties'){ // if the variable 'page' is equal to 'properties' ( /index.php?page=properties ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } } else { header( 'Location: ?page=news' ) ; // or something to this extent, I dont think this works out of the HTML <head> tags. } // end the PHP ?> Cheers Sean -
[SOLVED] ummm, a eror and for my life I cant find it
sean14592 replied to sean14592's topic in PHP Coding Help
cheers but im still getting the first error. cheers sean reston -
HI, Simple error I keep getting but I cant see anything wrong, Please, Please help me. Error: Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home/WEBSITE/public_html/new/index.php on line 23 Code (Lines 19-37): <?php // start the PHP if (isset($_GET['page'])){ // if the variable 'page' is set in the URL do this: if ($_GET['page'] == 'news'){ // if the variable 'page' is equal to 'news' ( /index.php?page=news ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'something'){ // if the variable 'page' is equal to 'something' ( /index.php?page=something ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } else if ($_GET['page'] == 'properties'){ // if the variable 'page' is equal to 'properties' ( /index.php?page=properties ) then // echo out all the information regarding that page echo ("<div id=\"main\"><div id=\"column\"> <div id=\"featuredproperty\"></div></div><div id=\"content\"></div></div>"); } } else { header( 'Location: '$_PHP['self']'?page=news' ) ; // or something to this extent, I dont think this works out of the HTML <head> tags. } // end the PHP ?> Cheers Sean
-
WOW, thanks mate thats awsome, just what I need. Cheers Sean Preston
-
I for my site I need a select city. I will do this by first allowing them to select country, then county then city. For example.... Albania >> Central Albania >> Ardenica So far I have managed to do the part were you click the country then it updates the area, but need to know how to do the next step... Here is my code so far.... dropdown.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Change selection in one box from another</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <script type="text/javascript" src="http://www.domain.com/include/countrydrop.js"></script> <form name="f1" method="post" action="/" onSubmit="return false;"> <p name="m1" onChange="relate(this.form,0,this.selectedIndex); document.f2.m2.focus();"> <select name="m3" onChange="relate(this.form,0,this.selectedIndex); document.f2.m2.focus();"> <option value="/" selected>Pick Country >> <option value="/">Albania</option> </select> </p> </form></td><td><form name="f2" method="post" action="/" onsubmit="return false;"><select name="m2" onchange="jmp(this.form,0)"><option value="/">---</option></select></form> </body> </html> countrydrop.js v=false; if (typeof(Option)+"" != "undefined") v=true; <!-- Begin if(v){a=new Array();aln=0;} function getFormNum (formName) { formNum =-1; for (i=0;i<document.forms.length;i++){ tempForm = document.forms[i]; if (formName == tempForm) { formNum = i; correctForm = tempForm; break; } } return formNum; } function jmp(formName,elementNum) { getFormNum(formName); if (formNum>=0) { with (document.forms[formNum].elements[elementNum]) { i=selectedIndex; if (i>=0) location=options[i].value; } } } function O(txt,url) { a[k]=new Option(txt,url);k++; } function relate(formName,elementNum,j) { if(v) { k=1; if(j==0) { // default category item a=new Array(); O("---",""); } if(j==1) { // Albania a=new Array(); O("<- Please Select ->"); O("Central Albania"); O("Eastern Albania"); O("Ionian Coast"); O("Northeastern Albania"); O("Northern Adriatic Coast"); O("Northwestern Albania"); O("Southern Adriatic Coast"); O("Southern Albania"); O("Tirana and Surroundings"); } aln2=a.length; getFormNum(formName); if (formNum>=0) { formNum = formNum + 1; with (document.forms[formNum].elements[elementNum]) { for (var i=options.length-1;i>0;i--) options[i]=null; for (var i=1;i<aln2;i++) options[i-1]=a[i]; options[0].selected=true; } } } else { jmp(formName,elementNum); } } // End --> Please can somebody hep me, I would be very greatful. Cheers Sean Preston
-
Is it possible to do onsubmit change tab, so like if I was going through a setup process they could click next and would change step without refreshing the page. I can do the steps and stuff easy, but I need to know how to on submit change to a different step. Cheers Sean