I have a text area form to allow someone to input their resume.
Here is my code for the php file:
$arresume = explode("\n",$resume);
$command = "sh resume.sh 1 \"$arresume\";
passthru($command);
And here is my code for resume.sh:
resume "${1}"
Then it will goto C program to input the resume into database with Appgen software.
I think I have a big mistake with passing the arrays into the shell script. How far off am I? Please reply me ASAP. Thanks.