How can I post a php variable from one file to an other? I still asked this question before and got this answer back but it doesn’t work. I guess it’s because the two code bits are each in a different file. How can fix this problem?
upload.php
$filename = $_FILES['upload']['name'];
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1);
sound_upload.php
GetSQLValueString($ext, "text")
you can use SESSION…
use…
in the first file and…
in second file.