i'm trying to read automatically a javascript output with php, this is the form and the output:

<b>SeteZoom:</b> 
<script>document.writeln(resp)</script> 

<form name=form1 method=GET onSubmit="this.rnd.value=rand()"> 
<input type=hidden name=rnd value=""> 
<b>VocĂȘ:</b> <input type=text name=msg size=30> 
</form>

this is the form and the output is ondocument.writeln(resp), can I read that output with PHP ?

link|improve this question

44% accept rate
no u cant. where does resp come from? – Ibu Jul 9 '11 at 5:27
what does this mean "the output is ondocument.writeln(resp)"?? – Praveen Prasad Jul 9 '11 at 5:29
feedback

2 Answers

Javascript runs on the client (browser), PHP runs on the server. PHP cannot know what Javascript is doing unless Javascript somehow calls the server (HTTP POST, AJAX request, etc).

link|improve this answer
1  
Heh, jinx, you beat me by about 3 seconds... – ElonU Webdev Jul 9 '11 at 5:32
So, there's nothing I can do ? I run this script on console – André Cardoso Jul 9 '11 at 5:32
Maybe you can describe what you want to accomplish (your end goal, not I want PHP to read Javascript) and if I can help I will. – Abdullah Jibaly Jul 9 '11 at 5:36
feedback

You're going to need to use some javascript AJAX to send the data in resp to the server. Since PHP is only on the server, and anything javascript does is only on the client, the server has no knowledge of client-side changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.