Hi,
I have a form that calls my script...in the form there is ONE variable that needs to be passed to the database...
The rest of the variables are generated using a script. The variables are being generated like this:
$title = $grabBag['title'];
$regionId = $grabBag['region'];
$studio = $grabBag['studio'];
$year = $grabBag['year'];
Now, I need to pass the above variables, along with the intial variable from the form (whihc is calling this script), into my MySQl database.
How do I do this???
Please help. Thanks in advance.