i can’t figure out how to distribute this value in php
<textarea rows="25" cols="40" name="content" style="height: 515px; margin: 0px; width: 411px;margin-top:-15px;">
<?php $name = $_SESSION['name']; $last = $_SESSION['last']; readfile('script/$name.$lastScript.txt'); ?>
</textarea>
what is the correct method for doing this?
if the value of session name is John
and session last is Smith
the readfile must contain (‘script/JohnSmithScript.txt’)
or