Anyone using WAMP - PHP & C++ ?

  • Thread starter Thread starter Susan Baker
  • Start date Start date
S

Susan Baker

I cant seem to locate any tutorials/references on using C# (clientside)
and PHP on the server side.

Anyone done this before?. Any useful books/sites recommended will be
much appreciated.
 
Hi,

Susan Baker said:
I cant seem to locate any tutorials/references on using C# (clientside) and
PHP on the server side.

Don't quite understand what you mean with C# in the clientside?
Are you talking about a win app communicating with some web serivce?
 
Ignacio Machin ( .NET/ C# MVP ) said:
Hi,



Don't quite understand what you mean with C# in the clientside?
Are you talking about a win app communicating with some web serivce?
My guess is that you want to use the webrequest and webresponse classes to
communicate with the website that is running php.
I'm not an expert on webserver design, but they should all use the same
protcol(http) for get and post.
So you could probably use WebRequest and WebResponse. The client shouldn't
really need to know whether the server is running php or asp.net or any
other technology.
 
logan said:
My guess is that you want to use the webrequest and webresponse classes to
communicate with the website that is running php.
I'm not an expert on webserver design, but they should all use the same
protcol(http) for get and post.
So you could probably use WebRequest and WebResponse. The client shouldn't
really need to know whether the server is running php or asp.net or any
other technology.

Many thanks Ignaio, this is closer to the mark. I'll do some reading up
on WebRequest/Response classes and take it from there then - as it seems
the suggestions have completely dried up.

Thanks - Sue
 
Back
Top