CodeCharge Studio
search Register Login  

Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeCharge.Discussion

 JAVA into Codecharge

Print topic Send  topic

Author Message
Greet Van Reeth
Posted: 03/29/2003, 7:16 AM

Hi,

I'm using Codecharge (not the studioversion) for making my PHP-scripts.

How can I use variables that are found with a Javascript into the Fields?

For example when i want to use these Javascript variables into Fields so I
can put them into a mySQL-database

Current resolution: x
Browser:
Max resolution: x
Version:
Color depth: bit
Code Name:
Platform:
Colors:
Java enabled:
Anti-aliasing fonts:


These variables must be put into a database after the user has filled in
some other information via a form.

Can anybody help me?

You can e-mail me johnny@van-bogaert.be

Thanks

This is the JAVAscript

<!-- THREE STEPS TO INSTALL BROWSER PROPERTIES:

1. Copy the coding into the HEAD of your HTML document
2. Add the onLoad event handler into the BODY tag
3. Put the last coding into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<SCRIPT LANGUAGE="JavaScript">


<!-- This script and many more are available free online at -->

<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- begin
function display() {
window.onerror=null;

colors = window.screen.colorDepth;
document.form.color.value = Math.pow (2, colors);
if (window.screen.fontSmoothingEnabled == true)
document.form.fonts.value = "Yes";
else document.form.fonts.value = "No";

document.form.navigator.value = navigator.appName;
document.form.version.value = navigator.appVersion;
document.form.colordepth.value = window.screen.colorDepth;
document.form.width.value = window.screen.width;
document.form.height.value = window.screen.height;
document.form.maxwidth.value = window.screen.availWidth;
document.form.maxheight.value = window.screen.availHeight;
document.form.codename.value = navigator.appCodeName;
document.form.platform.value = navigator.platform;
if (navigator.javaEnabled() < 1) document.form.java.value="No";
if (navigator.javaEnabled() == 1) document.form.java.value="Yes";

if(navigator.javaEnabled() && (navigator.appName != "Microsoft Internet
Explorer")) {
vartool=java.awt.Toolkit.getDefaultToolkit();
addr=java.net.InetAddress.getLocalHost();
host=addr.getHostName();
ip=addr.getHostAddress();
alert("Your host name is '" + host + "'\nYour IP address is " + ip);
}
}
// end -->
</script>

<!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->

<BODY OnLoad="display()">

<!-- STEP THREE: Copy this code into the BODY of your HTML document -->

<center>
<form name=form>
<table border=1 width=300>

<tr>
<td>current resolution:</td>
<td align=center><input type=text size=4 maxlength=4 name=width>
x <input type=text size=4 maxlength=4 name=height></td>
</tr>

<tr>
<td>
browser:</td>
<td align=center><input type=text size=20 maxlength=20 name=navigator></td>
</tr>
<tr>
<td>
max resolution:</td>
<td align=center><input type=text size=4 maxlength=4 name=maxwidth>
x <input type=text size=4 maxlength=4 name=maxheight></td>
</tr>

<tr>
<td>
version:</td>
<td align=center><input type=text size=20 maxlength=20 name=version></td>
</tr>

<tr>
<td>
color depth:</td>
<td align=center><input type=text size=2 maxlength=2 name=colordepth>
bit</td>
</tr>

<tr>
<td>
code name:</td>
<td align=center><input type=text size=15 maxlength=15 name=codename></td>
</tr>

<tr>
<td>
platform:</td>
<td align=center><input type=text size=15 maxlength=15 name=platform></td>
</tr>

<tr>
<td>
colors:</td>
<td align=center><input type=text size=8 maxlength=8 name=color></td>
</tr>

<tr>
<td>
java enabled:</td>
<td align=center><input type=text size=3 maxlength=3 name=java></td>
</tr>

<tr>
<td>
anti-aliasing fonts:</td>
<td align=center><input type=text size=3 maxlength=3 name=fonts></td>
</tr>

<tr>
<td colspan=2 align=center>
<input type=button name=again value="again?" onclick="display()"></td>
</tr>
</table>
</form>
</center>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- Script Size: 3.31 KB -->

Stefan Hogedal
Posted: 04/02/2003, 1:59 PM

1. Put hidden fields in the form
2. Put a Javascript in the Footer that puts the desired values in these
hidden fields.
....

"Greet Van Reeth" <Greet.van.reeth@pandora.be> wrote in message
news:b64dbs$v6h$1@news.codecharge.com...
> Hi,
>
> I'm using Codecharge (not the studioversion) for making my PHP-scripts.
>
> How can I use variables that are found with a Javascript into the Fields?
>
> For example when i want to use these Javascript variables into Fields so I
> can put them into a mySQL-database
>
> Current resolution: x
> Browser:
> Max resolution: x
> Version:
> Color depth: bit
> Code Name:
> Platform:
> Colors:
> Java enabled:
> Anti-aliasing fonts:
>
>
> These variables must be put into a database after the user has filled in
> some other information via a form.
>
> Can anybody help me?
>
> You can e-mail me johnny@van-bogaert.be
>
> Thanks
>
> This is the JAVAscript
>
> <!-- THREE STEPS TO INSTALL BROWSER PROPERTIES:
>
> 1. Copy the coding into the HEAD of your HTML document
> 2. Add the onLoad event handler into the BODY tag
> 3. Put the last coding into the BODY of your HTML document -->
>
> <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
>
> <SCRIPT LANGUAGE="JavaScript">
>
>
> <!-- This script and many more are available free online at -->
>
> <!-- The JavaScript Source!! http://javascript.internet.com -->
>
> <!-- begin
> function display() {
> window.onerror=null;
>
> colors = window.screen.colorDepth;
> document.form.color.value = Math.pow (2, colors);
> if (window.screen.fontSmoothingEnabled == true)
> document.form.fonts.value = "Yes";
> else document.form.fonts.value = "No";
>
> document.form.navigator.value = navigator.appName;
> document.form.version.value = navigator.appVersion;
> document.form.colordepth.value = window.screen.colorDepth;
> document.form.width.value = window.screen.width;
> document.form.height.value = window.screen.height;
> document.form.maxwidth.value = window.screen.availWidth;
> document.form.maxheight.value = window.screen.availHeight;
> document.form.codename.value = navigator.appCodeName;
> document.form.platform.value = navigator.platform;
> if (navigator.javaEnabled() < 1) document.form.java.value="No";
> if (navigator.javaEnabled() == 1) document.form.java.value="Yes";
>
> if(navigator.javaEnabled() && (navigator.appName != "Microsoft Internet
> Explorer")) {
> vartool=java.awt.Toolkit.getDefaultToolkit();
> addr=java.net.InetAddress.getLocalHost();
> host=addr.getHostName();
> ip=addr.getHostAddress();
> alert("Your host name is '" + host + "'\nYour IP address is " + ip);
> }
> }
> // end -->
> </script>
>
> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag -->
>
> <BODY OnLoad="display()">
>
> <!-- STEP THREE: Copy this code into the BODY of your HTML document -->
>
> <center>
> <form name=form>
> <table border=1 width=300>
>
> <tr>
> <td>current resolution:</td>
> <td align=center><input type=text size=4 maxlength=4 name=width>
> x <input type=text size=4 maxlength=4 name=height></td>
> </tr>
>
> <tr>
> <td>
> browser:</td>
> <td align=center><input type=text size=20 maxlength=20
name=navigator></td>
> </tr>
> <tr>
> <td>
> max resolution:</td>
> <td align=center><input type=text size=4 maxlength=4 name=maxwidth>
> x <input type=text size=4 maxlength=4 name=maxheight></td>
> </tr>
>
> <tr>
> <td>
> version:</td>
> <td align=center><input type=text size=20 maxlength=20 name=version></td>
> </tr>
>
> <tr>
> <td>
> color depth:</td>
> <td align=center><input type=text size=2 maxlength=2 name=colordepth>
> bit</td>
> </tr>
>
> <tr>
> <td>
> code name:</td>
> <td align=center><input type=text size=15 maxlength=15 name=codename></td>
> </tr>
>
> <tr>
> <td>
> platform:</td>
> <td align=center><input type=text size=15 maxlength=15 name=platform></td>
> </tr>
>
> <tr>
> <td>
> colors:</td>
> <td align=center><input type=text size=8 maxlength=8 name=color></td>
> </tr>
>
> <tr>
> <td>
> java enabled:</td>
> <td align=center><input type=text size=3 maxlength=3 name=java></td>
> </tr>
>
> <tr>
> <td>
> anti-aliasing fonts:</td>
> <td align=center><input type=text size=3 maxlength=3 name=fonts></td>
> </tr>
>
> <tr>
> <td colspan=2 align=center>
> <input type=button name=again value="again?" onclick="display()"></td>
> </tr>
> </table>
> </form>
> </center>
>
> <p><center>
> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
> by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
> </center><p>
>
> <!-- Script Size: 3.31 KB -->
>
>


   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.