Reputation: 31709
I'm at this part of tutorial for zf1.
It says:
At this point we have a connection to a database; in our case, its a connection to a Sqlite database located inside our application/data/ director..",
And then it shows an sql clause that I should save in a folder called scripts
, but... where is that folder?
Upvotes: 0
Views: 30
Reputation: 33148
You can create the folder if it doesn't already exist. Its location is not important as its contents are not used by your application directly, but by convention the folder would sit in the root of your app.
For reference, he's the recommended folder structure for a ZF1 application: http://framework.zend.com/manual/1.12/en/project-structure.project.html - the scripts folder there is the one on line 35. This is an extreme example - your application will likely have a lot less folders than shown in that guide.
Upvotes: 1