All i got was
Fatal error: Call to undefined function length() in D:\Program\wamp\www\voting\submitvote.php on line 19
Im not shure if i got it all right but i used it like this,
$optionboxvalue = $_POST['optionbox'];
//Append to file
$myfile = "olddata.txt";
$fh = fopen($myfile, 'a') or die("can't open file");
$stringdata = " + ";
fwrite($fh, $stringdata);
$stringdata = "$optionboxvalue";
fwrite($fh, $stringdata);
$myfile = "olddata.txt";
$fh = fopen($myfile, 'r');
$thedata = fread($fh, filesize($myfile));
//New Stuff
$votesArray= explode(" + ", $thedata );
$sum = 0;
for($i=0; $i<length($votesArray);$i++)
{
$sum = $sum + (int)$votesArray[$i];
}
$division = $sum / 2;
echo "$division";
Somethin' i missed ?
Thankz very much for the help btw, 🙂