|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (6 bit)
Join Date: Jul 2005
Posts: 53
|
Can someone write a simple html or php page for me
Ok i am wanting an IM list page thingy where someone goes to a form puts their name in one field and then there is like 4 other fields: MSN, YIM, AIM, IRC and they put their names in their and then click submit and it puts it in alphabetical order in a list i want it to be as simple as possible so if you can make it in html and make it like 2 pages do that i was told that it would only take like 5 minutes to make so i dont really think i would need to pay you but if you really need me to pay you then i guess i will thanks
|
|
|
|
|
|
#2 |
|
~ Ryan ~
|
Have you looked up on google for a similar program source code? Im sure there is something that you might just have to alter a bit and it will do what you want.
__________________
RiotCats.com, an internet domain specifically fabricated and visually erected for the appreciation of the feline kingdom! |
|
|
|
|
|
#3 |
|
Security Dude
Staff
|
Can you expand a little bit on what you want to do? If you give me a better idea, I can develop something quick for you. Shouldn't be hard, no.
__________________
Tyler A. Thompson Small Business Networking Services Specialist tyler@derbydigital.com |
|
|
|
|
|
#4 |
|
Chop Chop
|
Not sure exactly what you want, but I'll give it a shot.
PHP Code:
HTML Code:
<!--Begin Form--> <form method="post" action="im.php"> Name: <input type="text" name="name" value="<?php if (isset($_POST['name'])) { echo $_POST['name']; } ?>" /> AIM: <input type="text" name="aim" value="<?php if (isset($_POST['aim'])) { echo $_POST['aim']; } ?>" /> MSN: <input type="text" name="msn" value="<?php if (isset($_POST['msn'])) { echo $_POST['msn']; } ?>" /> Yahoo!: <input type="text" name="yim" value="<?php if (isset($_POST['yim'])) { echo $_POST['yim']; } ?>" /> IRC: <input type="text" name="irc" value="<?php if (isset($_POST['irc'])) { echo $_POST['irc']; } ?>" /> <input type="submit" name="submit" value="Submit" /> </form> This should be one file called im.php, but you can change it. Just remember to change the form action to the new file name.
__________________
Main Computer: Intel Core i5 2500K | AsRock Extreme3 Z68 | Corsair Vengeance 2 x 4GB DDR3 1600 | EVGA GTX460 768MB | Western Digital Caviar 750GB 7200RPM SATAII | Mushkin 60GB SSD w/ SRT enabled | Asus 20X DVD Burner | Antec 550W Modular | Cooler Master HAF 912 w/ 4 fans | NXZT Sentry Mesh fan controller | W7 | 2 x 23" LG IPS Monitors Laptop: Asus EEE 1000HE | 2GB RAM | Ubuntu Laptop: Lenovo Thinkpad T60p | 4GB RAM | W7 Last edited by catacon; 09-06-2005 at 07:45 PM. |
|
|
|
|
|
#5 |
|
Member (6 bit)
Join Date: Jul 2005
Posts: 53
|
Ok so with that do i put it all in 1 file? Or do i put the php code in im.php and the html in im.htm
Also you say it will take it and put it in a text file im not sure if thats what i want or not here is moreso what i want: on im.php or Index: Code:
[Button]Submit your info[/Button] A Alphie YIM: Alphie45987289 AIM: Alphie4325 MSN: Alphie522345@hotmail.com IRC: 4528902 Amber YIM: Amber45987289 AIM: Amber4325 MSN: Amber6474567@hotmail.com IRC: 4528902 B C D (ect) Code:
Name: |Text Box| Aim: |Text Box| Yim: |Text Box| Msn: |Text Box| IRC: |Text Box| [Button]Submit[Button] |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|