You are not logged in.

#1 2006-03-27 17:50:08

rasat
Forum Fellow
From: Finland, working in Romania
Registered: 2002-12-27
Posts: 2,293
Website

What's package or configure for HTML Forms?

I always do my web developments directly in server, never tried on my local. Did a test with the below HTML/Php page but some configure or package is missing to get an output. Works fine in server.
http://localhost/test.php
http://user-contributions.org/test.php

<html>
<body>
<form name="input" action="test.php" method="get">

INPUT<br>
Type your first name: 
<input type="text" name="FirstName" value="" size="20">
<br>Type your last name: 
<input type="text" name="LastName" value="" size="20">
<br>
<input type="submit" value="Submit">
<p>

OUTPUT<br>
First name: 
<input type="text" name="first" value="<? echo "$FirstName"?>">
<br>
Last name: 
<input type="text" name="last" value="<? echo "$LastName"?>"><p>

</form>
</body>
</html>

Markku

Offline

Board footer

Powered by FluxBB