hey i need help on sorting this out
here is the code
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<?php
$name = ( $name );
$team = ( $team );
$track = ( $track );
$level = ( $level );
$file="results.txt";
$fileopen=fopen ("$file","a");
fputs($fileopen, "
".$name.$team.$track.$level."
\n");
fclose($fileopen);
?>
<body>
</body>
</html>
and this is what it outputs to a text file
OMS200xFerrariAustraliaPro
but i want it too look like this
OMS200x Ferrari Australia Pro
can someone guide me on how to do this
Thank you
🙂