Web programming help[views:1660][posts:8]_________________________________________________ [Dec 21,2005 2:11pm - the_taste_of_cigarettes ""] how do I make it so there are a series of input fields that information can be typed into...like let's say something like: Name Date Number and then it puts it in a file and displays it as a list like John Q Gentry November 5 612626126 Peter Quadro November 5 2398182908 Jane Seymore December 6 91991920090 kinda thing? is this beyond HTML? |
______________________________________ [Dec 21,2005 2:18pm - the_reverend ""] that's beyond html. you need php or something does your server support php? |
______________________________________ [Dec 21,2005 2:20pm - the_reverend ""] make a file, call it phptest.php inside the file, put <?php phpinfo(); php?> and then put it on your server. if you got to http://your url/phptest.php and it works, you are golden and php is loaded. |
_________________________________________ [Dec 21,2005 2:41pm - DreamingInExile ""] you could just use <? phpinfo(); ?> because typing "php" over and over and over again gets tedious |
____________________________________ [Dec 21,2005 2:41pm - infoterror ""] I would try a Fortran-based solution. |
__________________________________ [Dec 21,2005 2:45pm - litacore ""] look at the screen real mean scare into doing what you want |
____________________________________________________ [Dec 21,2005 3:00pm - menstrual_sweatpants_disco ""] infoterror said:I would try a Fortran-based solution. haha |
_________________________________________ [Dec 21,2005 3:42pm - DreamingInExile ""] infoterror said:I would try a Fortran-based solution. hahaha, or you could try a Q-Basic-based solution |
__________________________________________ [Dec 21,2005 5:05pm - rumplestiltskin ""] If you have php... code: ...copy and save that as whatever.php, and create a blank text document and save it as textfile.txt. Upload them both to the same folder on your webserver, and chmod textfile.txt to 777. |