1
vote
How to call ASP.NET .dll file from a PHP script?
You use the DOTNET extension.
First off, you need to be running this on Windows. If you are on linux, then I would look at using something like Facebooks Thrift.
If you are on windo …
0
votes
How do I use cookies across two different domains?
You don't, cookies are bound to a domain. There are restrictions on this and it's referred to as cross site scripting.
Now, for some help to your problem.
What you can do is create a script …
2
votes
How do I load arbitrary data from a url PHP?
I think you are looking for
$url_data = file_get_contents("http://example.com/examplefile.txt");
…
