Unstoppable Domains โ€” Expired Auctions

Competition Script

SpaceshipSpaceship
Watch

totalservers

Established Member
Impact
0
I am looking to do the following....

Someone sends a contest entry via SMS and the result is posted to a html page using the following parameters:

source Mobile number of the iTAGG user making the request
dest Destination number (typically the iTAGG shortcode of 83248)
dtime The timestamp of when the request was made
message The entire SMS content of the incoming iTAGG request
network The network ID of the mobile number owner*

What I need is for this information to be submitted from the HTML page to a mySQL database.

Also at the end of the contest I need to be able to select a winner at random

If anyone can help me out please post here or PM me...
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
Create a MySQL table like so...

Code:
Create table contest (
id int not null primary key auto_increment,
source int, 
dest int,
dtime date,
message varchar(255),
netword id varchar(16)
);

And then to randomize the winner use this...

PHP:
mysql_connect('','','');
$result = mysq_query('Select * from contest');
$rows = mysql_num_rows($result);
mysql_free_result($result);
$rand = rand(1, $rows);
$result = mysql_query("Select * from contents where id =$rand");
$winner = mysql_fetch_assoc($result);
echo print_r($winner);
mysql_close();

If you need further assistance send me a PM.
 
0
•••
Wow, I'm impressed with that answer! I might try that out for a project I'm working on.

totalservers, if we could see this in action on your site, that would be great! Thanks. :)
 
0
•••
tempest1 - thanks for your response.
anthony - as if yet we are yet to implement it - this should be done in the next 3 -5 days.

thx
 
0
•••
Originally posted by totalservers
tempest1 - thanks for your response.
anthony - as if yet we are yet to implement it - this should be done in the next 3 -5 days.

thx

Okay great. Let me know when you have it working :)
 
0
•••
CatchedCatched
Escrow.com
Spaceship
Rexus Domain
CryptoExchange.com
Domain Recover
CatchDoms
DomDB
NameFit
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back