Search results
Search results 1-20 of 29.
Is there a way to have more then one discussion board? I need two more boards for my site. Also how do you make your board password potected to where you have say one thread password protected and then when fill in the place to put in your password then all the thread are available to you. Thanks!
This is competly off topic, I'm running a events calendar that's database driven.. here's my url http://www.craftofcharisma.com located at the bottom you see events.. I want to also add instructors but indivual that different like this website http://www.lovesystems.com See there events down below.. say you have Dating Mastery progrom as the event.. instrutor is chris Dating Program as the event.. instrutor is miles How do you make them show up like that for each event???
when i add the info in the database should i use a md5 for the password?? Here is an image of my database..
This is my database structure MySQL queries 1 2 3 4 5 6 CREATE TABLE `login` ( `id` int(1) NOT NULL auto_increment, `email` varchar(40) NOT NULL default '', `password` varchar(40) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
What do you have as a database?? That's working??
When I type in my email and password... and click submit I get this: $errors[] = 'The email address and/or password entered do not match those on file.'; How do you fix it so, it will stop doing that..
When i type in my username and password I get this The following error(s) occurred: - The email address and password entered do not match those on file. - Query: SELECT id, email, password FROM login WHERE email='jenkreider@sbcglobal.net' AND password=SHA('password removed') How do I fix that?? My info is in the database.. Here is my login page.. PHP Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 ...
hi dtdesign ... Thank you.. I'm not sure what you did but i'll try it..
I looked through the link and I don't get it.. I don't get with what I"m suppose to do with the global for this.
where is that suppose to go??? PHP Source code 1 global $dbc; Does that have to also be declared in the login page too???
I got everything working!
I get this as a error: Fatal error: Cannot redeclare escape_data() (previously declared in /home/content/p/u/a/puacharm/html/eventcalendar/configproject3.php:19) in /home/content/p/u/a/puacharm/html/eventcalendar/login2.php on line 10 because I also had the script in the login..but now I get this error Warning: mysql_real_escape_string() expects parameter 2 to be resource, null given in /home/content/p/u/a/puacharm/html/eventcalendar/configproject3.php on line 27 Warning: mysql_real_escape_strin...
When I take out the second mysql link in previous code.. I get this as a error: Fatal error: Cannot redeclare escape_data() (previously declared in /home/content/p/u/a/puacharm/html/eventcalendar/configproject3.php:19) in /home/content/p/u/a/puacharm/html/eventcalendar/login2.php on line 10 PHP Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 <?php //Connect To Database $hostname='host'; $username='user'; $pass...
dtdesign - Thanks i caught that mistake.. but now i get the error could not not select the database: Access denied for user 'charismaevnts'@'%' to database 'db_name' PHP Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 <?php //Connect To Database $hostname='host'; $username='charismaevnts'; $password='pass'; $dbname='dbname'; $usertable='charismaevnts '; $yourfield = 'login'; $dbc = @mysql_connect($hostname,$username, $password)...
I'm not sure what you mean!
I tried all of your ways and i still can't get it to work.. I tried this way.. where i added the escape_data function in there but i get this as an error.. is that its showing whats my password and username is in the database.. PHP Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 8...
Ok here is my issue.. When I click submit in my login form I get this as a issue Fatal error: Call to undefined function: escape_data() in /home/content/p/u/a/puacharm/html/eventcalendar/login2.php on line 16 if i take the escape_data() out then i get that is shows my password and login and error So how do i fix so it will pass to the loggedin2.php Here is my code.. PHP Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 4...