Once upon a time, old versions of Mathematica had a package called Graphics`Graphics3D`, which featured a neat little utility called StackGraphics[] that did exactly what OP wanted. Since the current versions of Mathematica no longer support this package, we are lucky that the upgrading information in the help file features some code for mimicking the functionality of StackGraphics[], which you can easily adapt to your circumstances:
f[n_Integer, x_] := Sin[x (1 + n/10)];
Graphics3D[
MapIndexed[
Cases[#, Line[L_] :> {ColorData[1][First[#2]],
Line[Thread[{L[[All, 1]], First[#2], L[[All, 2]]}]]}, -1] &,
Table[Plot[f[n, x], {x, 0, 2 Pi}], {n, 20}]], Axes -> True,
ViewPoint -> {.4, -1., .5}]

Of course, if your Plot[]s use the ColorFunction option, stacking graphics is a bit more complicated, since the output internally uses a GraphicsComplex[] object as opposed to a plain Jane Line[]. In that case, something like the following has to be done:
Graphics3D[
MapIndexed[
Cases[#1, GraphicsComplex[pts_, rest__] :>
GraphicsComplex[Function[pt, Riffle[pt, First[#2]]] /@ pts, rest], -1]&,
Table[Plot[f[n, x], {x, 0, 2 Pi},
ColorFunction -> (ColorData["Rainbow"][ArcCos[Cos[Pi (n/5 - #2)]]/Pi]&)],
{n, 10}]], Axes -> True, ViewPoint -> {.4, -1., .5}]
