i want to get data from other sites using javascript executed from my website.
|
The PHPJS website has some nice conversions of PHP functions into Javascript. |
|||
|
|
|
In general, unless they expose the data with JSON-P, you can't thanks to the security considerations imposed by the same origin policy. Recent browsers support a permissions system where a remote site can allow JavaScript running on a remote site to make a request. Flash provides a similar system, so can act as an intermediary. Both of these require the cooperation of the remote site. The usual work around is to use a proxy service, either running on your own system (so JS makes the request to the same server, which fetches the data from the remote site) or a third-party service like YQL. |
|||
|
|
|
That really depends on what you mean by "data". Try using AJAX if its just for simple requests. |
|||||
|
|
|
Javascript is limited by the same-domain security policy. The only way to get data from other sites is to use JSONP or build a proxy on your own host that lets you |
|||||
|
|
It has to be done server side - send an ajax request, run the PHP you want, and check the |
|||
|
|
|
Use jQuery:
You may not fetch anything but JavaScript or JSON. Or try this answer: How do I send a cross-domain POST request via JavaScript? |
|||
|
|