I've seen a lot of posts about switching from php to Django but none have covered this. I have a website that is built entirely in php (php 5, mysql, and apache2). This site is used only for collecting data from users. Now I need to make a second half of the site to display the data. This will be step 2 of 5 in the overall plan, and I'd rather not keep using php. I was wondering:
How hard would it be to run a Django server (hopefully on the same computer) that would serve data from the php based database?
Could python classes (inheriting from django.db.models.Model) be formed to get the data from the php database?
Could Django authentication be used with the preexisting users table?
Cheers. Chris