Terms and conditions script

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Seraphimk
Forum Newbie
Posts: 22
Joined: Mon Feb 09, 2009 12:49 pm

Terms and conditions script

Post by Seraphimk »

i was wandering how would you put the terms and conditions into a scroll down like text box ?
watson516
Forum Contributor
Posts: 198
Joined: Mon Mar 20, 2006 9:19 pm
Location: Hamilton, Ontario

Re: Terms and conditions script

Post by watson516 »

You could use a div with scroll bars
User avatar
jayshields
DevNet Resident
Posts: 1912
Joined: Mon Aug 22, 2005 12:11 pm
Location: Leeds/Manchester, England

Re: Terms and conditions script

Post by jayshields »

Code: Select all

<textarea>whatever</textarea>
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Re: Terms and conditions script

Post by John Cartwright »

Code: Select all

<div style="overflow: auto; height: 100px"> </div>
Post Reply