Go Back   Flash Flash Revolution: Community Forums > General Discussion > Chit Chat
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
Old 05-24-2007, 03:23 PM   #1
blahman12
FFR Player
 
blahman12's Avatar
 
Join Date: May 2007
Location: Crofton, Maryland
Posts: 52
Send a message via Skype™ to blahman12
Default HTML help

What's the code to make a submit button that says "Submit"
(In HTML)
blahman12 is offline   Reply With Quote
Old 05-24-2007, 04:29 PM   #2
DDR_Mike
FFR Player
 
Join Date: Jun 2006
Location: Florida
Posts: 188
Send a message via AIM to DDR_Mike
Default Re: HTML help

Code:
<input type="submit" value="Submit">
Would be a submit button, but what are you trying to do?

Code:
<button>Submit</button>
would work as well.
__________________
DDR_Mike is offline   Reply With Quote
Old 05-24-2007, 04:41 PM   #3
blahman12
FFR Player
 
blahman12's Avatar
 
Join Date: May 2007
Location: Crofton, Maryland
Posts: 52
Send a message via Skype™ to blahman12
Default Re: HTML help

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
blahman12 is offline   Reply With Quote
Old 05-30-2007, 09:04 PM   #4
Calcium Deposit
I am the liquor
FFR Music Producer
 
Calcium Deposit's Avatar
 
Join Date: May 2007
Location: Where ever evil lurks
Age: 31
Posts: 707
Default Re: HTML help

You would need more than html knowledge to make the button do anything.
Javascript would be needed.
Calcium Deposit is offline   Reply With Quote
Old 05-30-2007, 09:23 PM   #5
DarkProdigy
FFR Veteran
FFR Veteran
 
DarkProdigy's Avatar
 
Join Date: Aug 2005
Posts: 893
Default Re: HTML help

Here, this looks helpful: http://www.cs.tut.fi/~jkorpela/forms/index.html
__________________
Are you a stepartist?
DarkProdigy is offline   Reply With Quote
Old 05-30-2007, 10:31 PM   #6
DDR_Mike
FFR Player
 
Join Date: Jun 2006
Location: Florida
Posts: 188
Send a message via AIM to DDR_Mike
Default Re: HTML help

Quote:
Originally Posted by Calcium Deposit View Post
You would need more than html knowledge to make the button do anything.
Javascript would be needed.
Actually that's not true at all, you can make a form. Like:
Code:
<form name="input" action="whatever.php"
method="get">
whatever: 
<input type="text" name="whatever">
<input type="submit" value="Submit">
</form>
Whatever you need help with, just tell me, I'd be gald to help out.
__________________
DDR_Mike is offline   Reply With Quote
Old 06-2-2007, 12:37 PM   #7
blahman12
FFR Player
 
blahman12's Avatar
 
Join Date: May 2007
Location: Crofton, Maryland
Posts: 52
Send a message via Skype™ to blahman12
Default Re: HTML help

Quote:
Originally Posted by Calcium Deposit View Post
You would need more than html knowledge to make the button do anything.
Javascript would be needed.
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
blahman12 is offline   Reply With Quote
Old 06-14-2007, 06:03 PM   #8
g4z33b0
Banned
 
Join Date: Mar 2006
Location: Apex, NC
Age: 29
Posts: 2,619
Send a message via AIM to g4z33b0
Default Re: HTML help

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>
Go learn how to program.

Last edited by g4z33b0; 06-14-2007 at 06:29 PM..
g4z33b0 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT -5. The time now is 02:51 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.
Copyright FlashFlashRevolution