You are not logged in.

Search results

Search results 1-20 of 29.

Friday, October 23rd 2009, 3:41am

Author: kj0283

Two questions..

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!

Thursday, October 15th 2009, 6:33pm

Author: kj0283

off topic

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???

Wednesday, October 14th 2009, 10:48pm

Author: kj0283

database..

when i add the info in the database should i use a md5 for the password?? Here is an image of my database..

Wednesday, October 14th 2009, 10:34pm

Author: kj0283

database structure..

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 ;

Wednesday, October 14th 2009, 10:27pm

Author: kj0283

Php help

What do you have as a database?? That's working??

Wednesday, October 14th 2009, 10:25pm

Author: kj0283

so..

so. its in my database??

Wednesday, October 14th 2009, 10:21pm

Author: kj0283

login..

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..

Wednesday, October 14th 2009, 12:31am

Author: kj0283

escape_data

Ok thank you...

Tuesday, October 13th 2009, 9:52pm

Author: kj0283

escape_data

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 ...

Tuesday, October 13th 2009, 9:45pm

Author: kj0283

escape_data

hi dtdesign ... Thank you.. I'm not sure what you did but i'll try it..

Monday, October 12th 2009, 6:41pm

Author: kj0283

php_escape

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.

Monday, October 12th 2009, 8:32am

Author: kj0283

escape_data

where is that suppose to go??? PHP Source code 1 global $dbc; Does that have to also be declared in the login page too???

Monday, October 12th 2009, 6:00am

Author: kj0283

thanks!

I got everything working!

Monday, October 12th 2009, 3:50am

Author: kj0283

escape_data function

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...

Monday, October 12th 2009, 3:09am

Author: kj0283

escape_data function

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...

Sunday, October 11th 2009, 10:57pm

Author: kj0283

escape_data function..

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)...

Sunday, October 11th 2009, 10:06pm

Author: kj0283

???

I'm not sure what you mean!

Sunday, October 11th 2009, 9:59pm

Author: kj0283

escape_data function..

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...

Sunday, October 11th 2009, 3:32am

Author: kj0283

Php help

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...