hmm.. i can't seem to make this work.. what am i missing here?
//Multiple Delete tables
$myquery="DELETE apps , applang , edu , portfolio
FROM apps, applang, edu, portfolio
WHERE
applang.aid = edu.aid
AND edu.aid = portfolio.aid
AND portfolio.aid = apps.[b]ndex[/b]
AND apps.ndex = '$aid'
";
note on the bold index.. my reference to it is a different index called "ndex"..
I dont get any errors.. but my rows are still there..
also tried
//Multiple Delete tables
$myquery="DELETE apps , applang , edu , portfolio
FROM apps, applang, edu, portfolio
WHERE
applang.aid = '$aid'
AND edu.aid = '$aid'
AND portfolio.aid = '$aid'
AND apps.ndex = '$aid'
";
doesnt work either.. it looks like it should work..
what am i missing here?
tea