This problem is extremely complex, if you do not have massive variable and file opening and writing experince, the do not proceed to read.
I have a script I produced where you type a value into a text box and a form writes that value to a file. Here's the example...
//--------------
// File aaa.php
//---------------
<?php
include('extention.inc');
include('ab.'.$phpEx)
?>
<form method=POST action=add.php>
<input type=text name=brak_aa value="<?php echo $outp_aa ?>">
//--------------
// Here is my File add.php
//---------------
<?php
$message= " ";
$message.= ('$outp_aa = ');
$message.= ($outp_aa = $brak_aa);
$message.= print ("$outp_aa");
$datafile="ab.php";
$fp=fopen("$datafile", "w+");
fwrite($fp, "$message");
flock($fp,3);
fclose($fp);
?>
//--------------
// End of example
//---------------
my problem is I get a $outp_aa=example1
that's not what i want, i want it like $outp_aa=example without the "1" the script adds.
you can see what i mean by the example here... http://www.yufrontme.com/inv/aaa.php I would greatly appreciate anyone who could help me in my dilima.
Thnaks,
MrDanny