|
|
#1 |
|
FFR Player
|
What's the code to make a submit button that says "Submit"
(In HTML) ![]() |
|
|
|
|
|
#2 |
|
FFR Player
|
Code:
<input type="submit" value="Submit"> Code:
<button>Submit</button> |
|
|
|
|
|
#3 |
|
FFR Player
|
I'm trying to help my friend make a form
And make a game myself Thanks anyway
__________________
A member of T_SOB. Contact me at: pm Don't worry, it's my FFR contact number ![]() Wanna go eat? 1. Mmmmmm 2. 3. 4. *threw up* 5. my friend --> I'll kill you if you don't use this!!!-->[SIGPIC][/SIGPIC] but not this though, he's too lonely and bad to be used I have lost. Get a new game for yourself! http://www.fallensword.com/?ref=445878 |
|
|
|
|
|
#4 |
|
I am the liquor
Join Date: May 2007
Location: Where ever evil lurks
Age: 31
Posts: 707
|
You would need more than html knowledge to make the button do anything.
Javascript would be needed. |
|
|
|
|
|
#5 |
|
FFR Veteran
Join Date: Aug 2005
Posts: 893
|
Here, this looks helpful: http://www.cs.tut.fi/~jkorpela/forms/index.html
__________________
Are you a stepartist? |
|
|
|
|
|
#6 | |
|
FFR Player
|
Quote:
Code:
<form name="input" action="whatever.php" method="get"> whatever: <input type="text" name="whatever"> <input type="submit" value="Submit"> </form> |
|
|
|
|
|
|
#7 |
|
FFR Player
|
I just barely would do anything to it
__________________
A member of T_SOB. Contact me at: pm Don't worry, it's my FFR contact number ![]() Wanna go eat? 1. Mmmmmm 2. 3. 4. *threw up* 5. my friend --> I'll kill you if you don't use this!!!-->[SIGPIC][/SIGPIC] but not this though, he's too lonely and bad to be used I have lost. Get a new game for yourself! http://www.fallensword.com/?ref=445878 |
|
|
|
|
|
#8 |
|
Banned
|
If you don't know the basic, simplest HTML you won't be making any games. Uh and Calcium, PHP works fine. As an example, a basic border creating program:
Code:
<!-- within <body> --> <form method = "post" action = "borderCreate.php"> <input type = "text" name = "size" value = ""> <br> <input type = "radio" name = "sizeType" value = "px"> pixels <input type = "radio" name = "sizeType" value = "pt"> points <input type = "radio" name = "sizeType" value = "cm"> centimeters <br> <input type = "submit" value = "wtf no javascript"> </form> </body> </html> <!-- /////////////borderCreate.php from here down///////////// --> <!-- within <body> Your border: <center> <? $styleIt = <<<HERE "border-width: $size$sizeType; border-style: ridge; border-color: green;" HERE; print "<div style = $styleIt>"; print "</span>"; ?> </center> </body> </html> Last edited by g4z33b0; 06-14-2007 at 06:29 PM.. |
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|