I might have to connect to an external database on a different server since one server supports just asp and one server supports just php. I am pretty new to php and haven't yet learned asp so any help would help.
You can't have PHP code in ASP or vice versa. The other interpreter won't know what to do with the code and output it as text. However, you can have PHP reside on the same server as ASP, the code just can't be imbedded with the others files. Basically it is ill advised.
Originally posted by raulph Ok maybe I will just learn ASP
Microsoft access acts as the database file. Is this good or bad for SEO or does it not make a difference?
Makes no difference for SEO, but MSAccess doesn't scale well - it won't handle much load.
Most windows servers nowdays have PHP as well as ASP. Check with your host. If your server doesn't have it, ask them to install it.
If you want to use both in a single site, for whatever reason, just have your ASP post or link to a PHP file, or vice versa. You can't mix the two in the same file..
Comment