Re: How to call external php script from html? [message #172996 is a reply to message #172995] |
Tue, 15 March 2011 13:04 |
astral
Messages: 14 Registered: February 2011
Karma:
|
Junior Member |
|
|
"Erwin Moller"
<Since_humans_read_this_I_am_spammed_too_much(at)spamyourself(dot)com> wrote in
message news:4d7f6034$0$81474$e4fe514c(at)news(dot)xs4all(dot)nl...
> On 3/15/2011 1:43 PM, astral wrote:
>>
>> "Erwin Moller" wrote:
>>>>
>>>> >> Hi,
>>>>
>>>> >> it's not working also.
>>>>
>>>>
>>>> > It is working. It is an ancient trick.
>>>>
>>>> > Add an alert to it so see what page is called.
>>>> > You DID change http://www.example.org/myScript.php into something
>>>> > sensible I presume??
>>>>
>>>>
>>>> > <script type="text/javascript">
>>>> > var myPHPScript = "http://www.example.org/myScript.php";
>>>> > var milliSecSinceUE = (new Date()).getTime();
>>>> > var myFakeImage = new Image();
>>>> > alert (myPHPScript +"?nocache="+milliSecSinceUE);
>>>> > myFakeImage.src = myPHPScript +"?nocache="+milliSecSinceUE;
>>>> > </script>
>>>>
>>>>
>>>> > Regards,
>>>> > Erwin Moller
>>>> .............................
>>
>>
>>>> Hi,
>>
>>>> sure, I used correct path in my test.
>>>> Alert says http://www.site.com/test.php?nocache=1300186777680
>>
>>>> so it called script URL.
>>
>>> Hi Astral,
>>
>>> Then what exactly isn't working?
>>
>>> (Assuming you are using Apache, and know where your accesslog is and
>>> have sufficient rights) you can check in your accesslogs if the script
>>> is called with something like:
>>
>>> tail -n 100 access_log | grep test.php
>>
>>> to see if the request arrived.
>>
>>> Regards,
>>> Erwin Moller
>>
>> ............................
>>
>> Hi,
>>
>> script don't ecxhoes any output in page. I didn't find errors related to
>> script in access log. Perhaps this method to call script isn't supported?
>
> You want the output of the PHP script to appear on your page?
> That was totally unclear to me.
>
> You'll need XMLHTTPRequest for that.
> Not PHP.
>
> Try a javascript newsgroup: --> comp.lang.javascript
>
> Or for a quick introduction (that is not 100% correct):
> http://www.w3schools.com/ajax/default.asp
>
> Good luck.
>
> Regards,
> Erwin Moller
......................
No, I mean script parse html and should return results, not PHP script
appear on page.
Regards,
astral
|
|
|