[H] Web development help

chrisc7890

Member
Joined
Aug 2, 2011
Messages
10
Hi

I need alittle help or guidance, I want to do a simple page where any user can input a telephone number (so it has to only allow numbers and has to only be 10 digits) then it has to save it to a txt file or database and other use should be able to type a number in a search box and it will say if it's on the site or not

I am using softaculous and need to know what program I should use to do this in

Thanks
 

oldhat

Executive Member
Joined
Jun 27, 2007
Messages
5,341
HTML Forms to input the number and PHP script to read/write to file/database should work.
 

Hamster

Resident Rodent
Joined
Aug 22, 2006
Messages
42,920
HTML Forms to input the number and PHP script to read/write to file/database should work.
This ^

Code:
<form method="POST" action="myPhpPageThatDoesTheSaving.php">
    <input type="number" maxlength="10" name="thedeets" />
</form>
 
Top