how to do this?
Page 1 of 1
how to do this?
hi i got this code im trying to put in a phpbb3 forum post1 how do i put in the post
2 once u put in your ingame name under i want it to show you the text everyone has put in there
here is code
- Code: Select all
<br /><br /><div style="background-color: #DDFF99;width:450px; border:thin solid black; padding:10px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;"><form method="post" action="sfcnr-forum.hourb.com">
Full in-game username: <input type="text" name="username" style="width:200px" /> <input type="submit" value="Participate" />
</form></div><br /><br />Current participants list:<br /><iframe style="height:300px; />The winners will be drawn the 25th May.<br /><br />Good luck!</div>
Re: how to do this?
There are errors in your code you have opens and iframe but did not closed it and there is a div closing tag at the end which i snot opens before closing try this code modified by me- Code: Select all
<div style="background-color: #DDFF99;width:450px; border:thin solid black; padding:10px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;">
<form method="post" action="sfcnr-forum.hourb.com">
Full in-game username:
<input type="text" name="username" style="width:200px" />
<input type="submit" value="Participate" />
</form>
</div>
<br />
<br />
Current participants list:<br />
<p>The winners will be drawn the 25th May.</p>
<p>Good luck!</p>
Re: how to do this?
thanks but how would i make it so the names entered will be displayed below?Re: how to do this?
you can do this by javascript if your requirment is just for client side and if you intended to save the data entred by user and also display it you can use php.do you only want that use can see his/her name or there is any other need ?
Page 1 of 1