Alright well I am trying to write three variables to a file. I did it with one variable, but I want to do it with three variables this time. The variables are $name, $date, $content and my fwrite function looks like so:
fwrite($open, $name $date $content);
But that dosent work, so how would i split the variables up but so they are all still recorded to the file?