I am trying to do something simply to start out here.
What I would have done is I created a simple html page with a submit button:
<html>
<body>
<form action="untitled.php" method="post" name="FormName">
<input type="text" name="textfieldName" size="24"><input type="submit" name="submitButtonName">
</body>
</html>
also I have created a php page (untitled.php)
I need to link the posted data "textfieldname" to a php variable $var
I have this :
<?php
$var="textfieldname";
echo '$var';
?>
Is that the wrong approach?
pH1nk