[Need Votes]Win me a free wedding[Please]

Thank you for Voting.
To see how many votes your favorite couple has earned, click the 'View Couples' button.
Do not click the back button of your browser.
Your 16 vote(s) has been cast
 
I'll keep voting everday:
Congratulations! You have received total of 15 Bonus Votes to award to your favorite couple!
Thank you for registering to vote in Feldmann Nissan’s Dream Wedding Giveaway!

BEFORE YOU CAN VOTE YOU NEED TO CONFIRM YOUR EMAIL. You will receive an email (within 2 hours) to the email address you specified when registering. If you do not receive a confirmation email, please contact Dream Wedding Administration at info@feldmannnissangiveaway.com.

You may vote once a day, every day, for your favorite couple.

EDIT: Thank you for Voting.
To see how many votes your favorite couple has earned, click the 'View Couples' button.
Do not click the back button of your browser.
Your 16 vote(s) has been cast
View Couples
 
Last edited:
You're rockin it out!!

woooohooo. Already planning to buy one of these:
best_man_button-p145242178035981645t5sj_400.jpg
 
Some one smarter than me should write a script to parse all of the contestants for name and votes since its all in plain text in the source. Nothing fancy.
 
there is one couple that is 300 behind and another that is 500 behind. They both had the 1700 bonus starting votes though so I'm not too worried.
 
My six (6) votes have been cast for 3/4/09

is there any way to check if someone actually regged and didn't just type "voted" in this thread?
 
Last edited:
Some one smarter than me should write a script to parse all of the contestants for name and votes since its all in plain text in the source. Nothing fancy.

I can do it where it opens every single couples page individually. They're using some goofy trickery to actually advance the couples page, I don't know how to do that dynamically.
 
Haha I made the script but my host or theirs is gonna kill it in NO time. I'd rather grab it from the paged list and do 1/12th the pages but I'm not sure wtf .NET shit they're doing to advance the page.

PHP:
// we have to open every couples page separately since 
// we can't view the entire paged list, fuckers.
for ($i=1; $i<=517; $i++) {
	$url = 'http://feldmannnissangiveaway.com/Details.aspx?wid=' . $i;
	$file = file($url, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
	
	// I happen to know the couple name is on line 88
	$cname = $file[88];
	
	// and their votes are on line 92
	$cvotes = $file[92];

	echo '<tr><td>' . $cname . '</td><td>' . $cvotes . '</td></tr>';
	
	fclose($file);
}
 
Last edited:
Back
Top