473,473 Members | 1,719 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Follow Up on JavaScript FAQ's

4.18 How do I get a perl/asp/php variable into client-side js?

You have the serverside language generate the javascript:

jsvar="<%= aspvar %>";
jsvar="<?php echo $phpvar ?>";

etc. For communication between client and server, after a page has
loaded, there are a number of "Remote Scripting" options available:
http://www.ashleyit.com/rs/main.htm
the first jsvar is for ASP (VB Script); the 2nd jsvar is for PHP. what
if I need to store a Perl/CGI variable into jsvar?

Mar 15 '06 #1
1 1156
John Smith wrote:

[repaired quotation]
| 4.18 How do I get a perl/asp/php variable into client-side js?
|
| You have the serverside language generate the javascript:
|
| jsvar="<%= aspvar %>";
| jsvar="<?php echo $phpvar ?>";
<FAQENTRY>

Variables should be declared always, therefore it should be

var jsvar="<%= aspvar %>";
var jsvar="<?php echo $phpvar; ?>";

</FAQENTRY>
[...]
the first jsvar is for ASP (VB Script); the 2nd jsvar is for PHP.
what if I need to store a Perl/CGI variable into jsvar?


Then you use the means of the available programming language/environment.

Perl:

print "var jsvar='$perlvar';\n";

# Here-document syntax
print <<EOT
var jsvar="$perlvar";
EOT

POSIX 1003.2 compatible:

echo "var jsvar='$shellvar';";
printf "var jsvar='$shellvar';\n";

It really is pretty basic stuff in any programming language. Hopefully you
got the idea now.

Please ask language-related questions in the appropriate newsgroup, and use
a quote character prefix, preferably "| ", when you quote from third-hand
sources such as the FAQ.
PointedEars
Mar 17 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.