Forum Moderators: mack
Sure, just add a new table
What version of Dreamweaver (I'm guessing by your name)do you use?
There are plenty of PHP/Dreamweaver tutorials available at the Macromedia site, or a good book to buy would be
Dreamweaver MX: PHP Web Development
ISBN: 1904151116
Karl :)
Regards Ian
I prefer to hand code this sort of stuff and would recommend you get familiar with PHP code. It's not that hard to get some basic skill under your belt to accomplish what you're attempting to do. You'll find we've discussed many useful PHP books [google.com].
But - whatever floats your boat - use one database. Read, learn, experiment.
But - whatever floats your boat - use one database
I assume you mean one database per site (or per independent unit)?
- do not run one forum off two databases.
- do not run two db-driven sites off a single database.
My main advice would be this. If you are experimenting, your absolute first experiment should (must!) be to install PHP and MYSQL on your workstation and build and play with your sites there. When you have them the way you want them, then upload.
How I manage to do this and keep my sanity is with Smarty. For those of you who don't know, Smarty is a templating engine for PHP. You do all of your php code in one file and all of your html in another. In code view, DW does an excellent job on the php files, in design view, DW does a great job on the Smarty template. DW still kinda drops the ball on most css stuff, but that's another thread.
Of course there will always be issues with any solution, but I have had great success with this method.
[smarty.php.net...]
Bill
- do not run two db-driven sites off a single database.
Can you explain why?
I run three sites from one database with no problems (well not yet anyway)
My main advice would be this. If you are experimenting, your absolute first experiment should (must!) be to install PHP and MYSQL on your workstation and build and play with your sites there. When you have them the way you want them, then upload.
I would just go for it, trial and error and all that :)
Karl
Thanks again Ian