12-13-2014, 11:40 PM
Any JS / Form wizards around?
Not looking for an iMaro solution. Its going to be part of an PHP submission script.
I am trying to set up a personal lottery system to play. Have an excel sheet with my numbers generated (+100 row system). and like to have an easy URL submission to my place to play weekly lotteries..
So I have been trying to figure out a submission form and how to get data/numbers to be added in the form when landing on the page using a URL with data string/variables. But unfortunately have not managed to get it to work.
And the tech support at wintrillions is not forthcoming with any tips/solutions. Maybe they do not want people to play a systems game.
Much appreciated if someone with the skills or have tips on how I can figure this out.
Landing page that I need help with is:
wintrillions.com/play-eurojackpot.php
Goal:
- Selection of number of tickets to play 5:
- Selection is for the Number Picker choice
- automatically have 5 tickets filled up with numbers.
My findings so far:
The form is built up by these key elements, but I might be missing a few.
The following are the actual tickets. But not sure how to define the array for Main Numbers + Power ball numbers.
Code:
The submission URL if possible, might be like this:
Code:
Or
Code:
So when using above type of URL I hope to pre-fill the form and allow myself to submit the ticket and log in to my account and do my payment.
But this is what I have trouble in solving and figuring out.
Thanks in advance to anyone having ideas on this.
Bounty to first one who has a working solution.
Regards,
Gayle Woot
Not looking for an iMaro solution. Its going to be part of an PHP submission script.
I am trying to set up a personal lottery system to play. Have an excel sheet with my numbers generated (+100 row system). and like to have an easy URL submission to my place to play weekly lotteries..
So I have been trying to figure out a submission form and how to get data/numbers to be added in the form when landing on the page using a URL with data string/variables. But unfortunately have not managed to get it to work.
And the tech support at wintrillions is not forthcoming with any tips/solutions. Maybe they do not want people to play a systems game.
Much appreciated if someone with the skills or have tips on how I can figure this out.
Landing page that I need help with is:
wintrillions.com/play-eurojackpot.php
Goal:
- Selection of number of tickets to play 5:
- Selection is for the Number Picker choice
- automatically have 5 tickets filled up with numbers.
My findings so far:
The form is built up by these key elements, but I might be missing a few.
The following are the actual tickets. But not sure how to define the array for Main Numbers + Power ball numbers.
Code:
Code:
&ticket_byDraw="5" - This decides how many tickets are generated.&tr_ticket_0=ticketTrInactive;ticketRegCellInactive="1,2,3,4,5";ticketPowCellInactive="1,2"&tr_ticket_1=ticketTrInactive;ticketRegCellInactive="2,3,4,5,6";ticketPowCellInactive="2,3"&tr_ticket_2=ticketTrInactive;ticketRegCellInactive="3,4,5,6,7";ticketPowCellInactive="3,4"&tr_ticket_3=ticketTrInactive;ticketRegCellInactive="4,5,6,7,8";ticketPowCellInactive="4,5"&tr_ticket_3=ticketTrInactive;ticketRegCellInactive="5,6,7,8,9";ticketPowCellInactive="5,6"
The submission URL if possible, might be like this:
Code:
Code:
hxxp://www.wintrillions.com/play-eurojackpot.php?ticket_byDraw="5"&tr_ticket_0=ticketTrInactive;ticketRegCellInactive="1,2,3,4,5";ticketPowCellInactive="1,2"&tr_ticket_1=ticketTrInactive;ticketRegCellInactive="2,3,4,5,6";ticketPowCellInactive="2,3"&tr_ticket_2=ticketTrInactive;ticketRegCellInactive="3,4,5,6,7";ticketPowCellInactive="3,4"&tr_ticket_3=ticketTrInactive;ticketRegCellInactive="4,5,6,7,8";ticketPowCellInactive="4,5"&tr_ticket_3=ticketTrInactive;ticketRegCellInactive="5,6,7,8,9";ticketPowCellInactive="5,6"
Or
Code:
Code:
hxxp://www.wintrillions.com/play-eurojackpot.php?ticket_byDraw="onchangeGenerateTickets(5);loadPrices();"&tr_ticket_0="ticketTrInactive;ticketRegCellInactive=(1,2,3,4,5);ticketPowCellInactive=(1,2)&tr_ticket_1="ticketTrInactive;ticketRegCellInactive=(2,3,4,5,6);ticketPowCellInactive=(2,3)"&tr_ticket_2="ticketTrInactive;ticketRegCellInactive=(3,4,5,6,7);ticketPowCellInactive="3,4)"&tr_ticket_3="ticketTrInactive;ticketRegCellInactive=(4,5,6,7,8);ticketPowCellInactive=(4,5)"&tr_ticket_3="ticketTrInactive;ticketRegCellInactive=(5,6,7,8,9);ticketPowCellInactive=(5,6)"
So when using above type of URL I hope to pre-fill the form and allow myself to submit the ticket and log in to my account and do my payment.
But this is what I have trouble in solving and figuring out.
Thanks in advance to anyone having ideas on this.
Bounty to first one who has a working solution.
Regards,
Gayle Woot