Page 1 of 1

Catigories

Posted: Wed Aug 30, 2006 8:10 am
by pea
Hey i'm having a go at making the catigory thing. I added:

Code: Select all

if (isset($_POST['catigory1'])) {
$cat = file1.txt;
}
for one selection and the file var is replaced by $cat but it's not working..

For some reason the '$_POST['catigory1']' isn't being submitted or read.

Any ideas? Pete

Posted: Wed Aug 30, 2006 1:54 pm
by Klemen
Are you sure you are sending it using POST? Try $_REQUEST instead if not sure. Also make sure the 'catigory1' part is not misspelled anywhere.