Hello,
I will wish a Php script that allow me to replace a variable from an HTML in another file.
<html>
<head>
<title>insertion de données en PHP :: partie 1</title>
</head>
<body>
<table border="0" align="center" cellspacing="2" cellpadding="2">
<tr align="center">
<td>nom</td>
<td><input type="text" name="number"></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" value="OK"></td>
</tr>
</table>
</form>
</body>
</html>
Here is my HTML form, I just want when I click Ok the Number field value will be the new value of my variable $ Number = 30; that is in another file conf.php
Do you know how I can do that?
Thank you in advance for your help.
cordially
Joe,


