user297850
user297850

Reputation: 8015

client/server and browser/server

How to compare client/server and browser/server architecture? Or what are their respective advantages and disadvantages?

Consider PHP programming, is there any difference when using it in client/server and browser/server programming?

Upvotes: 0

Views: 1978

Answers (2)

Chris Baker
Chris Baker

Reputation: 50592

I think you may be muxing your terminology. When you're using a browser, IT is the "client" in that case. When you're using PHP via command line, YOU are the client (or your operating system, depending on you want to look at it).

There isn't really a comparison between "client/server" architecture and "browser/server" architecture - they are one and the same.

Upvotes: 1

shamittomar
shamittomar

Reputation: 46692

Browser acts as a client. So, in web world, browser/server is in-fact client/server thing.

Upvotes: 1

Related Questions