1000 credits to create this php script

Status
Not open for further replies.

warlordste

New Member
Messages
653
Reaction score
0
Points
0
I would like these questionnaire filled in and the answers to be stored into a my sql database and a way to view the database please i will give 1,000 credits i will give 1,500 if its done by 3 pm gmt time




Games Questionnaire

Name

Age

Gender MaleFemale​
What type of consoles do you own?
PSP PC PS2 PS3 Wii
Ds Xbox 360 Gameboy (any type)
Game Cube Other please type below
Other
What type of games do you play?
Action Shooter Adventure Simulation RPG/ role playing
Strategy Racing Other please list below
Other game types
If a new game was created when would you like it to be set in?
Future Present Past
Would you like different ways of completing the level?
Yes No
Would you have good and evil ways of doing things affecting your characters appearance and changing the ending to the game?
Yes No
Would you like a game where you become more powerful the further into the game you are?
Yes No
Would you like to change the clothing and equipment of the character?
Yes No
Would you like it to be set on a map where you can travel place to place?
Yes No
Would you like to be able to free roam around the map?
Yes No
Would you want your character to be human?
Yes No
Would you like to be able to change the facial and body features of the character?
Yes No
Would you like a quest and task system?
Yes No
Any other ideas you would like to see in the game?
Other ideas
 

callumacrae

not alex mac
Community Support
Messages
5,257
Reaction score
97
Points
48
Will do.
Edit:
Sorry actually I don't have enough time this evening. And probably the rest of the week. So I can't do it sorry.

What I've done so far:

Code:
<html>
<body>
<form action="form.php" method="post">
<table border="0">
<tr>
<td style="text-align:right; width:30%">
<b>Name:</b>
</td>
<td>
<input type="text" name="name" />
</td>
</tr>
<tr>
<td style="text-align:right">
<b>Age:</b>
</td>
<td>
<input type="text" name="age" />
</td>
</tr>
<tr>
<td style="text-align:right">
<b>Gender:</b>
</td>
<td>
<input type="radio" name="gender" value="male"> Male<br />
<input type="radio" name="gender" value="female"> Female
</td>
</tr>
<tr>
<td style="text-align:right">
<b>What type of consoles do you own?</b>
</td>
<td>
PSP:
<input type="checkbox" name="consoles" value="psp">
<br>
PC:
<input type="checkbox" name="consoles" value="pc">
<br>
PS2:
<input type="checkbox" name="consoles" value="ps2">
<br>
PS3:
<input type="checkbox" name="consoles" value="ps3">
<br>
Wii:
<input type="checkbox" name="consoles" value="wii">
<br>
DS:
<input type="checkbox" name="consoles" value="ds">
<br>
Xbox 360:
<input type="checkbox" name="consoles" value="xbox">
<br>
Gameboy (any type):
<input type="checkbox" name="consoles" value="gameboy">
<br />
Gamecube:
<input type="checkbox" name="consoles" value="gamecube">
<br />
Other:
<input type="text" name="consoles" />
</td>
</tr>
<tr>
<td style="text-align:right">
<b>What type of games do you play?</b>
</td>
<td>
Action:
<input type="checkbox" name="typegames" value="action">
<br />
Shooter:
<input type="checkbox" name="typegames" value="shooter">
<br />
Adventure:
<input type="checkbox" name="typegames" value="adventure">
<br />
Simulation:
<input type="checkbox" name="typegames" value="simulation">
<br />
RPG:
<input type="checkbox" name="typegames" value="rpg">
<br />
Strategy:
<input type="checkbox" name="typegames" value="strategy">
<br />
Racing:
<input type="checkbox" name="typegames" value="racing">
<br />
Other:
<input type="text" name="typegames" />
<br />
</td>
</tr>
<tr>
<td style="text-align:right">
<b></b>
</td>
<td>

</td>
</tr>
</form>
</body>
</html>
 
Last edited:

sarvar

New Member
Messages
82
Reaction score
0
Points
0
In progress... about 30 minutes of coding left.

Taking a break. :]
 
Status
Not open for further replies.
Top