Search found 11 matches

by schneiderj
Fri Sep 09, 2005 3:26 pm
Forum: Javascript
Topic: Openning a new windows
Replies: 2
Views: 345

Thank you for your very fast answer !
I will do by script

Jean-Marie
by schneiderj
Fri Sep 09, 2005 3:14 pm
Forum: Javascript
Topic: Openning a new windows
Replies: 2
Views: 345

Openning a new windows

Hello !

I would like to open from my php code a popup windows to show some important information. I would like to do that with PHP. Is that possible ?

Thank for your help,
Jean-Marie
by schneiderj
Sat Apr 09, 2005 2:59 am
Forum: PHP - Code
Topic: Probleme when I set a value to an input
Replies: 4
Views: 423

Sorry that solution work... :oops:
Thank you for your help :D .

Jean-Marie
by schneiderj
Sat Apr 09, 2005 1:11 am
Forum: PHP - Code
Topic: Probleme when I set a value to an input
Replies: 4
Views: 423

Thank you for your reply. I try your solution and that did not till work :? . I have a look at the code in the browser and I have this : <input name=&quote;nom&quote; size=&quote;80&quote; value=&quote;Louis&quote; Marie=&quote;&quote; type=&quote;text&quote;>...
by schneiderj
Fri Apr 08, 2005 3:51 pm
Forum: PHP - Code
Topic: Probleme when I set a value to an input
Replies: 4
Views: 423

Probleme when I set a value to an input

Hello ! I have a probleme with the the following code : <html><body> <?php $Nom = "Louis Marie"; ?> <input name="nom" type="text" size="80" value=<?php echo $Nom; ?>> </body></html> when I point my browser to this page I have only the truncated name in the inp...
by schneiderj
Thu Mar 24, 2005 2:34 am
Forum: PHP - Code
Topic: Using PHP with Java
Replies: 4
Views: 260

As I know, no PHP implementation exist for this library. The site of this Java extension should be found at http://cdk.sourceforge.net/ . The description is The Chemistry Development Kit (CDK) The CDK classes are Java utitility classes for ChemoInformatics and Computational chemistry, written in Jav...
by schneiderj
Wed Mar 23, 2005 1:38 pm
Forum: PHP - Code
Topic: Using PHP with Java
Replies: 4
Views: 260

Using PHP with Java

Hi !

Here is my probleme. I have a site write with PHP. But now I have to use a JAVA librairy. What is the best way to interface the two langages.
NB : With Java I will have only calculations on the server side.

Thanks for your help,
Jean-Marie
by schneiderj
Wed Mar 16, 2005 3:30 am
Forum: PHP - Code
Topic: Problem with $_COOKIE
Replies: 6
Views: 620

Your write !
In fact I post in the PHP forum because I think the problem come from $_COOKIE as my cookie look like fine in my cookie's file :oops:
by schneiderj
Tue Mar 15, 2005 10:39 am
Forum: PHP - Code
Topic: Problem with $_COOKIE
Replies: 6
Views: 620

In fact I write the cookie with JavaScript. But the solution of escape() did not work for the "+".
What I find as solution is to use the JavaScript fonction string. replace(/\+/g,"%2B") :) .

Thanks for your time,
Jean-Marie
by schneiderj
Tue Mar 15, 2005 5:14 am
Forum: PHP - Code
Topic: Problem with $_COOKIE
Replies: 6
Views: 620

Thanks for your reply. I try it, but the + is not escaped. I read the doc on this function addslashes, and effectively it seam this sign did not need slashes.
Can I said that a bug of the S_COOKIE ?
by schneiderj
Tue Mar 15, 2005 4:40 am
Forum: PHP - Code
Topic: Problem with $_COOKIE
Replies: 6
Views: 620

Problem with $_COOKIE

Hi, I have a cookie with the following value : serveur FALSE / FALSE 1110749626 Produit [N+][Cl-] and I would like to read this cookie to retrieve the value "[N+][Cl-]". But with the following code : $name = $_COOKIE&#1111;'Produit']; echo $name; I obtain [N ][Cl-] :?: ... The "+&...