Hello,
I'm making something pretty cool here, but I've come across this problem. I need to have a foreach that will support 2 variables... let me show you  .
PHP Code:
foreach ($paths as $path) { //...blah blah blah }
//What I want to do:
foreach ($paths as $path && $rects as $rect) { //...blah blah blah with $path and $rect }
Is that possible? So far I've gotten just errors, and I don't want to nest them because that'll create a weird sort of glitchy loop.
Thanks!
-PG
|