472,328 Members | 1,744 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,328 software developers and data experts.

problem passing quote and double quote in IE7 pages

I just started calling a php module from html. I added "php rocket" from
microsoft to FP2003 but dont think that is the cause.

The problem is that I am getting a backslash before a double or single quote
and I cannot figure out how to get ride of it.

$query = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';

The above works perfectly but if I attempt to pass the sql string into the
page as follows:

sqlCMD = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';
window.open("cpustats.php?sqlCMD=" + sqlCMD,"_blank");

I see the following on the IE7 explorer address bar:

myserver/mysite/cpustats.php?sqlCMD=SELECT * FROM cpuinfo where Description
like "%xcell%" or Description like "%q6600%"

AGAIN, ONE WOULD THINK THERE IS NOTHING WRONG WITH THE ABOVE.

Low and behold, the following code
$query = $_REQUEST['sqlCMD'] ;
print ($query);

gets expanded to:

SELECT * FROM cpuinfo where Description like \"%xcell%\" or Description like
\"%q6600%\"

I do not know why I see the backslash before the quote. Swapping single and
double quotes has no effect. $_REQUEST seems to substitute backslash before
any quote in a string. My guess is that IE7 (also FF) put it in. The MySql
query fails as it does not handle the backslash before the double (or
single) quote. I would hate to have to parse thru the string and remove the
backslash character when it is before a quote.

anyway, I am open to any suggestions. I am tired of googleing this. All I
found on google were attempts to add backslashes, not get rid of them.
...tia..

ps - if I actually add a \" then I get three backslashes.
Nov 12 '08 #1
6 3114
Joseph Stateson escribió:
I just started calling a php module from html. I added "php rocket" from
microsoft to FP2003 but dont think that is the cause.

The problem is that I am getting a backslash before a double or single quote
and I cannot figure out how to get ride of it.
These are the infamous "magic quotes":

http://es2.php.net/magic_quotes

To sum up: disable them. Set magic_quotes_gpc to off in your php.ini file.

By the way... They've been disabled by default for several years now so
it's likely that you have some other discouraged settings in your PHP
config. Check, for instance, register_globals:

http://es2.php.net/register_globals
sqlCMD = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';
window.open("cpustats.php?sqlCMD=" + sqlCMD,"_blank");
This is an interesting architecture. So users can remotely query any
random data they want? Can they also run inserts and deletes?

--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--
Nov 12 '08 #2
myserver/mysite/cpustats.php?sqlCMD=SELECT * FROM cpuinfo where
Description like "%xcell%" or Description like "%q6600%"
There's a lot wrong with that. Before adding the querystring to the URL
it will have to be encoded

It should be something like:
myserver/mysite/cpustats.php?sqlCMD=SELECT%20*%20FROM%20cpuinfo%20 where%20Description%20like%20%22%25xcell%25%22%20o r%20Description%20like%20%22%25q6600%25%22

Notice that all spaces have been changed to %20, all quotes to %22, and
all % to %25. As an alternative, the spaces could be changed to +
instead of %20.

The page cpustats.php will have to change these entities back before
processing the SQL.

In asp the encoding is done using Server.URLEncode(stringToEncode). I
don't know the method for PHP.

Note that % is a reserved character in a URL, which is why it has to be
changed, and some browsers stop reading querystrings at the first space.

--
Ron Symonds - Microsoft MVP (Expression)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp


"Joseph Stateson" <jo************@att.netwrote in message
news:fV*****************@nlpi065.nbdc.sbc.com:
I just started calling a php module from html. I added "php rocket" from
microsoft to FP2003 but dont think that is the cause.

The problem is that I am getting a backslash before a double or single quote
and I cannot figure out how to get ride of it.

$query = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';

The above works perfectly but if I attempt to pass the sql string into the
page as follows:

sqlCMD = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';
window.open("cpustats.php?sqlCMD=" + sqlCMD,"_blank");

I see the following on the IE7 explorer address bar:

myserver/mysite/cpustats.php?sqlCMD=SELECT * FROM cpuinfo where Description
like "%xcell%" or Description like "%q6600%"

AGAIN, ONE WOULD THINK THERE IS NOTHING WRONG WITH THE ABOVE.

Low and behold, the following code
$query = $_REQUEST['sqlCMD'] ;
print ($query);

gets expanded to:

SELECT * FROM cpuinfo where Description like \"%xcell%\" or Description like
\"%q6600%\"

I do not know why I see the backslash before the quote. Swapping single and
double quotes has no effect. $_REQUEST seems to substitute backslash before
any quote in a string. My guess is that IE7 (also FF) put it in. The MySql
query fails as it does not handle the backslash before the double (or
single) quote. I would hate to have to parse thru the string and remove the
backslash character when it is before a quote.

anyway, I am open to any suggestions. I am tired of googleing this. All I
found on google were attempts to add backslashes, not get rid of them.
..tia..

ps - if I actually add a \" then I get three backslashes.
Nov 12 '08 #3
giving up the right to remain silent
""Álvaro G. Vicario"" <al****************@demogracia.comwrote in message
news:gf**********@huron.algomas.org...
Joseph Stateson escribió:
>I just started calling a php module from html. I added "php rocket" from
microsoft to FP2003 but dont think that is the cause.

The problem is that I am getting a backslash before a double or single
quote and I cannot figure out how to get ride of it.

These are the infamous "magic quotes":

http://es2.php.net/magic_quotes
thanks Álvaro I would not have known to google magic quotes. I did get as
far as "extra quote php" before giving up.
To sum up: disable them. Set magic_quotes_gpc to off in your php.ini file.

By the way... They've been disabled by default for several years now so
it's likely that you have some other discouraged settings in your PHP
config. Check, for instance, register_globals:

http://es2.php.net/register_globals
I hunted, but never found that php.ini file. I am a home yahoo'er and have
yahoo web space and yahoo.com provides MySql and shows database examples
only in perl and php. They do not do aspx or I would be using that. If I
have a php.ini file somewhere I cannot find php.ini in my home pages but I
might have missed it as I was using ftp to browse the directories. I
downloaded odbc drivers for FP2003 but they will not connect to yahoo's
server so that is how I got into php. I suspect their server has the
php.ini file and I do not have access to it.

I followed yahoo's instructions and created their MySql database at
http://swri.info/gpustats I had been hoping that microsoft would buy yahoo
and fix some other problems and magic_quotes is one more they could fix. I
had a hunch something was wrong when a newbie like me found an error in
yahoo's one and only sample perl script at
http://help.yahoo.com/l/us/att/small.../mysql-12.html
eg:, the: $row[0\
I got a thankyou this morning for notifiying them, but am not holding my
breath. I will now complain about the magic quotes but I dont think they
will do anything.
>sqlCMD = 'SELECT * FROM cpuinfo where Description like "%xcell%" or
Description like "%q6600%" ';
window.open("cpustats.php?sqlCMD=" + sqlCMD,"_blank");

This is an interesting architecture. So users can remotely query any
random data they want? Can they also run inserts and deletes?
yea - I am not yet checking for malicious code yet. I was lucky to get my
first ever php page working and it was nice to be able to change the query
from explorer or FF while debugging. I will probably pass the sql command
in a psudo-session variable. That too, is subject to getting hacked but is
not as obvious as providing the sql command in the url.

...thanks..

Joseph "Beemer Biker" Stateson
http://ResearchRiders.org
ask about my 1999 R1100RT
Nov 12 '08 #4
giving up the right to remain silent
"Ronx" <ro*****@hotmail.comwrote in message
news:Ov**************@TK2MSFTNGP06.phx.gbl...
myserver/mysite/cpustats.php?sqlCMD=SELECT * FROM cpuinfo where
Description like "%xcell%" or Description like "%q6600%"
There's a lot wrong with that. Before adding the querystring to the URL
it will have to be encoded

It should be something like:
myserver/mysite/cpustats.php?sqlCMD=SELECT%20*%20FROM%20cpuinfo%20 where%20Description%20like%20%22%25xcell%25%22%20o r%20Description%20like%20%22%25q6600%25%22

Notice that all spaces have been changed to %20, all quotes to %22, and
all % to %25. As an alternative, the spaces could be changed to + instead
of %20.

The page cpustats.php will have to change these entities back before
processing the SQL.

In asp the encoding is done using Server.URLEncode(stringToEncode). I
don't know the method for PHP.

Note that % is a reserved character in a URL, which is why it has to be
changed, and some browsers stop reading querystrings at the first space.
<big snip>

Thanks Ron, I will come up with another way to pass the query from my FP2003
project to the php code. The php code was written to allow FP2003 to access
the yahoo MySql server that is "free" on my home web page. It would be nice
if microsoft would buy yahoo and start supporting aspx , sqlserver and still
keep it "free".

Anyway, I found a psudo-session variable tool
- sessvars ver 1.01
- JavaScript based session object
- copyright 2008 Thomas Frank

and will be using that to pass the sql string to my php page when it loads.
Joseph "Beemer Biker" Stateson
http://ResearchRiders.org
ask about my 1999 R1100RT

Nov 12 '08 #5
Joseph Stateson escribió:
thanks Álvaro I would not have known to google magic quotes. I did get as
far as "extra quote php" before giving up.
First of all, make sure your problem is related to PHP settings. You can
read your current config with phpinfo(), which prints an HTML table with
all the configuration values.

I hunted, but never found that php.ini file. I am a home yahoo'er and have
yahoo web space and yahoo.com provides MySql and shows database examples
only in perl and php.
The previous script will tell you the path of the php.ini file in use.
In shared hosting, you might have a custom php.ini file for yourself
(somewhere in your FTP space) or you might not. If you don't, you can
provide PHP settings in some other ways, but it depends on many
factors... However, a quick look at the Yahoo help suggest that you
can't really change anything:

http://help.yahoo.com/l/us/att/small...hp/php-36.html

As last resort, you can always remove these extra backslashes with
stripslashes(). See example #2 at:

http://us2.php.net/manual/en/securit....disabling.php

--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--
Nov 12 '08 #6
giving up the right to remain silent
""Álvaro G. Vicario"" <al****************@demogracia.comwrote in message
news:gf**********@huron.algomas.org...
Joseph Stateson escribió:
>thanks Álvaro I would not have known to google magic quotes. I did get
as far as "extra quote php" before giving up.

First of all, make sure your problem is related to PHP settings. You can
read your current config with phpinfo(), which prints an HTML table with
all the configuration values.

>I hunted, but never found that php.ini file. I am a home yahoo'er and
have yahoo web space and yahoo.com provides MySql and shows database
examples only in perl and php.

The previous script will tell you the path of the php.ini file in use. In
shared hosting, you might have a custom php.ini file for yourself
(somewhere in your FTP space) or you might not. If you don't, you can
provide PHP settings in some other ways, but it depends on many factors...
However, a quick look at the Yahoo help suggest that you can't really
change anything:

http://help.yahoo.com/l/us/att/small...hp/php-36.html

As last resort, you can always remove these extra backslashes with
stripslashes(). See example #2 at:

http://us2.php.net/manual/en/securit....disabling.php
I tried putting php.ini in the directory with the scripts but it had no
effect. The #2 did work (deep backslash).

It was not possible to use that psudo-session variable because php runs at
the server and jscript at the browser. I am allowing only the "where" part
of the sql command to be utilized so I should be ok and I am also using an
encode as suggested by Ronx. I also figured out what I was doing wrong
and no longer need to use that psudo-session variable to retain info in the
html page. If I knew more about php *AND* it had a drag and drop
toolkit like frontpage or Visual Studio, I would do all the coding in php.

http://swri.info/cpustats
Nov 13 '08 #7

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

Similar topics

9
by: SB | last post by:
Ok, very simple problem. I'm trying to update a value by calling a function using pass by reference, but it does not update the value. In short, the...
39
by: Martin Jørgensen | last post by:
Hi, I'm relatively new with C-programming and even though I've read about pointers and arrays many times, it's a topic that is a little confusing...
3
by: ishwarbg | last post by:
Hi Everyone, I have a .Net Application, through which I am invoking a function from a legacy DLL developed in C++. My structure in C# contains...
18
by: tbringley | last post by:
I am a c++ newbie, so please excuse the ignorance of this question. I am interested in a way of having a class call a general member function of...
4
by: StephQ | last post by:
I'm still working on the library for the simulation of SDEs. The following test code compiles fine with the digital mars compiler, but fails with...
7
by: aaragon | last post by:
Hi everyone, The idea is quite simple: generate a container with random values in it. For that, I decided to create a class that I called...
9
by: Dave | last post by:
Hi guys, I have just set up a duplicate server running: apache 2.54, mysql 5.04 and php 5.04 This is the same setup as as the server we are...
5
by: Ray D. | last post by:
Okay, so I'm trying to typecast a random integer into a double, and store that in an array of doubles. Here is my code: void...
2
by: Dark Wind | last post by:
Hi, I have been using OPT++ to solve a non linear programming problem. I am totally new to C++, but I looked at an example given on OPT++...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
1
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...

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.