Welcome Guest! You can login or register.
Login or Register.
#81
Posted
:
Thursday, October 8, 2009 12:50:07 AM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
" said: 
" said: 
" said: 
GR8 Job!
Thanks. Now I'm trying to find my pseudo code on how to tally up the numbers or think of how I was planning on it in the first place. lol
i was wondering about that, i sent you an PM.
I'm hoping to tackle this again this weekend.
#82
Posted
:
Tuesday, December 8, 2009 3:23:47 PM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
A lot has happened, but in the last day and a half I decided to dedicate some time to this.
I have it 95% completed.
Currently ...
[ul]Members can submit picks.
Winners tabulated.
Main index displays descending order of correct picks.
Compilation of total picks tabulated accurately.[/ul]
The last thing I'm working on, is making the software dynamic instead of static. I might just say scratch it and do it static. albeit it'll take some time copying and pasting the Home vs Visitor stuff, but that's ok.
Long story short, this is ready for use for NFL Picks 2010.
#83
Posted
:
Friday, December 11, 2009 4:04:38 PM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
I'd like to have the schedules stored in the database and populated as such.
How to get a variable value displayed as a radio button option?
#84
Posted
:
Saturday, December 12, 2009 6:46:48 AM(UTC)
Joined: 8/7/2008(UTC)
Applause Given: 147
Applause Received: 189
" said: 
I'd like to have the schedules stored in the database and populated as such.
How to get a variable value displayed as a radio button option?
Put this inside of your loop:
[php]<input type="radio" name="name" value="<?= $varname; ?>" />[/php]
Replace $varname; with whatever the name of your variable is. You can flesh out the rest of it, but that's the basics.
#85
Posted
:
Saturday, December 12, 2009 2:39:17 PM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
Ahh, sweet. Thank you, I will have to look into that.
So, you know PHP coding fairly well, or better?
#86
Posted
:
Saturday, December 12, 2009 7:02:32 PM(UTC)
Joined: 8/7/2008(UTC)
Applause Given: 147
Applause Received: 189
" said: 
Ahh, sweet. Thank you, I will have to look into that.
So, you know PHP coding fairly well, or better?
Yep. I've been doing it off and on for at least 6 years and I did it for employment for 1 year up through May of this year. I still have to look some things up, but I usually understand it quickly.
#87
Posted
:
Tuesday, January 5, 2010 3:54:46 PM(UTC)
Joined: 12/12/2007(UTC)
Applause Given: 36
Applause Received: 36
//how about this
<input type="radio" name="packer" value="1"<?if($packer=="1"){echo " checked ";}?>>Packers<br>
<input type="radio" name="Az" value="1"<?if($Az=="1"){echo " checked ";}?>>AZ
//you need a function to store and retrieve this data to and from your db
//like this
//create variables
class Picks {
var $packer = null;
var $Az = null;
}
//create function
function add_pick($Packer, $Az) {
$this->packer = $packer;
$this->Az = $Az;
}
//BTW did u ever consider adding a reset password feature to your site
#88
Posted
:
Tuesday, January 5, 2010 6:02:18 PM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
#89
Posted
:
Tuesday, January 5, 2010 6:13:29 PM(UTC)
Joined: 12/12/2007(UTC)
Applause Given: 36
Applause Received: 36
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
I did not see the 'Forgot Password' link.
does my code sample provide any assistance??
#90
Posted
:
Tuesday, January 5, 2010 6:37:34 PM(UTC)
Joined: 8/8/2008(UTC)
Applause Given: 4,862
Applause Received: 2,487
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
On a semi related subject-
Is it Firefox' fault that I have to sign back in every time? I think when I used EI it logged me in automatically. Now with Firefox if I close out my web browser I have to sign back in.
#91
Posted
:
Tuesday, January 5, 2010 7:38:03 PM(UTC)
Joined: 10/13/2006(UTC)
Location: Green Bay, WI
Applause Given: 2,802
Applause Received: 4,979
" said: 
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
On a semi related subject-
Is it Firefox' fault that I have to sign back in every time? I think when I used EI it logged me in automatically. Now with Firefox if I close out my web browser I have to sign back in.
talking about coding a add on to the site and he throws this question in here ... lol :) (psst, thread creation is free bud :P)
That issue is client side, noting to do with the server my friend.
" said: 
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
I did not see the 'Forgot Password' link.
does my code sample provide any assistance??
Haven't had any time to check it out.
#92
Posted
:
Tuesday, January 5, 2010 8:24:01 PM(UTC)
Joined: 8/8/2008(UTC)
Applause Given: 4,862
Applause Received: 2,487
" said: 
" said: 
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
On a semi related subject-
Is it Firefox' fault that I have to sign back in every time? I think when I used EI it logged me in automatically. Now with Firefox if I close out my web browser I have to sign back in.
talking about coding a add on to the site and he throws this question in here ... lol :) (psst, thread creation is free bud :P)
That issue is client side, noting to do with the server my friend.
" said: 
" said: 
I believe the software already has a password reset feature. If you logout, click 'Forgot Password' you should be stepped through that process.
I did not see the 'Forgot Password' link.
does my code sample provide any assistance??
Haven't had any time to check it out.
Thanks. I am renowned for getting off track. (Oh look flowers.)
The reason I asked is because a college board I go to does it differently for passwords.
Users browsing this topic
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.