Re: [PHP] Issue with encrypted string created with Crypt_CBC and urls and mod_rewrite

2006-02-22 Thread Dan Rossi
wrote: hi there im having issue decoding an encoded string created with a pear package Crypt_CBC which i am encoding a uri into the string and sending to a rewrite url. The query string is not returning the encoded part of the url properly for some reason and not decoding properly. I have

[PHP] Issue with encrypted string created with Crypt_CBC and urls and mod_rewrite

2006-02-22 Thread Dan Rossi
hi there im having issue decoding an encoded string created with a pear package Crypt_CBC which i am encoding a uri into the string and sending to a rewrite url. The query string is not returning the encoded part of the url properly for some reason and not decoding properly. I have already

Re: [PHP] Lions and tigers and slashes, oh my!

2006-01-13 Thread Jochem Maas
Jay Blanchard wrote: [snip] hope the kick didn't break anything. :-) [/snip] Nah, just having a senior moment. Since it is a query string issue I converted the database (even though it is strictly a web database in this case) to 'Oil & Gas'. The query string sees the ampersa

[PHP] PHP 5 DOM, XPath, UTF-8, and Form Input

2005-03-19 Thread C Drozdowski
I have been doing some testing and need confirmation that the following is correct. You have a DOMDocument that potentially contains UTF-8 encoded data (it might not however). You want to search it via DOMXpath->query() using a value that comes from a $_POST value. If the page that posts

RE: [PHP] Re: & in Query String

2002-11-26 Thread Ernest E Vogelsinger
At 00:00 27.11.2002, Jonathan Rosenberg \(Tabby's Place\) said: [snip] >Ok ... I take back what I said about & not working in a query string. >It works just fine. [snip] Ahhh - and I just created a te

RE: [PHP] Re: & in Query String

2002-11-29 Thread Malcolm Brownell
Looks fine in Opera 6.03 hth http://www.vogelsinger.at/test.php?par1=value1&par2=value2&par3=value3 Opera Version 6.03 Build 1107 Platform Win32 System Windows 98 Java Sun Java Runtime Environment 1.4 Testing the query string This is the full query string ($_SERVER['QUERY_ST

[PHP] Decoding a URL without decoding values

2004-03-21 Thread Ben Ramsey
nd pass it to the query string, it looks like this: http://test.alpharetta.ga.us/index.php?m=links&category=Recreation+%26+Parks&go.x=22&go.y=7 As you can see, there are already encoded entities in the URL, which are further encoded when passed through urlencode(). The problem I

Re: [PHP] Question: urldecode

2004-12-09 Thread Richard Lynch
it's not right for it to be Hex at that point, change it there. You'll drive yourself crazy changing it here, where it's already in the system in a format you don't want. My *GUESS* is that you're taking the QUERY string and stuffing it into your database. Since you gr

Re: [PHP] URL encode

2005-02-23 Thread Jochem Maas
html entity %ca so a user is entering '%carlos%'? firstly it _looks_ like you are adding the '%' signs in order to have this affect the way a search query is performed - if this is the case maybe you should consider wrapping the search term on the server side _after_ you have recie

Re: [PHP] URL

2004-07-21 Thread John W. Holmes
ions to manage this, or not... any solucion ?? How about $_SERVER['QUERY_STRING']? That _should_ contain the current query string with the values still encoded, but I'm not sure on that. If they aren't still encoded, then just rebuild the query string by looping through

[PHP] Problems passing variables from Javascript to PHP

2003-06-17 Thread Daniel
Hello =) I'm embedding an SQL query constructed in Javascript to an URL and opening it in PHP where I try to execute it. Problem is, the string arrives garbled, with all the apostrophes escaped. This must be Javascript's type of "safe url encoding", but how would I go about d

Re: [PHP] A problem about urlencode

2004-10-25 Thread raditha dissanayake
Teng Wang wrote: I have a url containing some multi-byte characters. So I need urlencode() to change these characters into the %xx form. However, when I encode the whole url string, "/" is also be encoded as "%2F". How to solve this problem? I don't want to analyze th

RE: [PHP] Question: urldecode

2004-12-09 Thread Stuart Felenstein
roperly before going to php because the script runs fine. I just know that I've seen the hex's normally converted in the browser bar. Further, I was assuming I should add the urldecode to the query string. As I had posted originally. From the example in the manual it appears I might to

[PHP] Re: PHP 5 DOM, XPath, UTF-8, and Form Input

2005-03-21 Thread Jason Barnett
C Drozdowski wrote: > I have been doing some testing and need confirmation that the following > is correct. > > You have a DOMDocument that potentially contains UTF-8 encoded data (it > might not however). > > You want to search it via DOMXpath->query() using a value th

Re: [PHP] '&' Sign in _GET Parameter

2003-08-22 Thread CPT John W. Holmes
;&" sign in 'PSG & Inc.' Now the query works fine. Can some one > throw some light here. I am sure something minor is to be done when > passing the name of the company in the parent script. The & character separates variables in the query string, so it must be

RE: [PHP] Decoding a URL without decoding values

2004-03-22 Thread Ford, Mike [LSS]
L to another script > for some > processing. Before I urlencode() the URL and pass it to the query > string, it looks like this: > > http://test.alpharetta.ga.us/index.php?m=links&category=Recrea > tion+%26+Parks&go.x=22&go.y=7 > > As you can see, there are alrea

Re: [PHP] URL

2004-07-21 Thread zareef ahmed
some fuctions to manage this, or > not... > > any solucion ?? > > How about $_SERVER['QUERY_STRING']? > > That _should_ contain the current query string with > the values still > encoded, but I'm not sure on that. If they aren't > still encod

Re: [PHP] how do I spoof a get request

2003-08-14 Thread Analysis & Solutions
u said sometimes. What are the times it doesn't work? Are you always passing the same exact query string? If so, then their server is flaky. Or, if are you sending different info in the query string at different times, then you are likely not passing the info correctly. When constr

RE: [PHP] Question: urldecode

2004-12-09 Thread Ford, Mike
gt; > I actually doubt whether you even need this urldecode() -- but it depends where that value is coming from. > Further, I was assuming I should add the urldecode to > the query string. I don't quite understand this -- if you mean the query string supplied to your script and manif

Re: [PHP] '&' Sign in _GET Parameter

2003-08-24 Thread AciD
n some one throw some light here. I am sure something minor is to be done when passing the name of the company in the parent script. The & character separates variables in the query string, so it must be encoded if it appears in the data. Take a look at http://us2.php.net/urlencode ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: [PHP] passing variables in javascript

2001-02-22 Thread Simon Garner
From: "Nicholas W. Miller" <[EMAIL PROTECTED]> > > H ... is there anyway to do this without requiring the page > >with the link to use PHP? > > Well if the string you're going to urlencode() is always going to be the same, then just run it through

[PHP] Very Large MySQL Query String

2002-05-06 Thread David Bouw
think of is that the mysql query string is to long.. ?? (The data when encoded is about 1.3 MB of text).. This is the source code.. if (!($userfile_size == 0)) {$fd = fopen ($userfile, "r"); $contents = fread ($fd, filesize ($userfile)); fclose ($fd); unlink ($userfile)

Re: [PHP] '&' Sign in _GET Parameter

2003-08-22 Thread Pushpinder Singh Garcha
ing the name of the company in the parent script. The & character separates variables in the query string, so it must be encoded if it appears in the data. Take a look at http://us2.php.net/urlencode ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:/

RE: [PHP] 2 Qs: Passing current URL with session and how to avoid session timeout???

2003-01-18 Thread Chris Shiflett
--- Cal Evans <[EMAIL PROTECTED]> wrote: > I usually just pass this kind of info around on the URL. > > http://mypage.com/mypage.php?prevURL=http://mypage.com/lastpage.php > > if I have to pass a full query string then I urlencode() > it first and urldecode() it on the ot

Re: [PHP] Re: Very Large MySQL Query String

2002-05-06 Thread David Bouw
PHP-Mysql string length limitation or maybe something I am overlooking..) I can though echo the query to screen and see that the uploaded file is encoded to a very nice (large) text-string.. Any other suggestions are greatly appreciated. With kind regards, David Bouw > If I use the

Re: [PHP] Re: Very Large MySQL Query String

2002-05-06 Thread Javier
ollowing. >>>> >>>>I use the http upload functions a lot, works great!!.. >>>>For some months now I have been using a small PHP program >>>>which I use to upload PDF files of scanned documents and >>>>insert them into a Mysql table.. >>

[PHP] Re: Very Large MySQL Query String

2002-05-06 Thread Julio Nobrega Trabalhando
<250 kb), but I now have a > PDF of 1 MB... When uploading files I run the > function: chunk_split(base64_encode($binaryfile)); > to encode it, this to transform the binary file to text.. (Works great!!!) > > When the query was called to insert the data, nothing happens, > also no

RE: [PHP] Question: urldecode

2004-12-09 Thread Ford, Mike
ith > the ..err I forget what it's called, but query string > looks like this: %5B%5D=3. I think the %5B and 5D > should be []. Are you seeing the URL-encoded version *only* in your browser's Address/Location bar? If so, that's perfectly normal and nothing to worry about -

[PHP] Odd URL problem

2002-08-29 Thread Steve Lane
development server, Dell server running RedHat 7.1, Apache 1.3.23, PHP 4.1.1, they seem to work fine. When it works, I click an encoded link in my mailer, and my browser tries to access the URL with a correct, decoded query string. When it fails, I get a message from the browser (IE 5+ only for this a

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
lso. I would recommend doing that first. That will mean reading the data as ISO-8859-1 and converting it to UTF-8 and then saving it again. I'd also be looking at the app that inputs the data into the DB initially. To convert the text, here are 2 examples. I'm sure there are more ways.

Re: [PHP] Re: Very Large MySQL Query String

2002-05-07 Thread David Bouw
andle 16 Megabyte.. (I know have little more than a 1 >> MB..) >> >> I will try some things tomorrow, but I can't find out what the problem >> is.. (Column size, PHP-Mysql string length limitation or maybe >> something I am overlooking..) >> >> I can though e

Re: [PHP] Re: PHP] can't pass complete URL (part of the query string) from

2002-11-26 Thread Chris Shiflett
ssing: ref=http://embitec.com/fishcart/displayem.php3?cat=5 olimit=0 zid=1 lid=1 The URL you want to set ref to needs to be URL encoded. You can use rawurlencode() to achieve this. You will know you have it right when your HTML form tag looks like this: http://embitec.com/fishcart/email.php?

[PHP] I18n problems: Working with double-byte languages

2002-01-14 Thread Junior, Ricardo
s function converted each byte from double-byte string to its relative in UTF8 chars. Reverting this string encoded to UTF8 with utf8_decode function, the browser can display successfully the Korean chars (because the individual bytes of the double-byte string will be as them were before), but Ora

[PHP] Re: I18n problems: Working with double-byte languages

2002-01-15 Thread Yasuo Ohgaki
; I've tried to convert the Korean string to UTF8 with utf8_encode function, > but this function converted each byte from double-byte string to its > relative in UTF8 chars. > Reverting this string encoded to UTF8 with utf8_decode function, the browser > can display successfully the

Re[2]: [PHP] saving form data

2004-02-23 Thread Richard Davey
HP, how would I accept uploaded file attachments and attach CFI> them to the emailed form results? Then how about in reverse? Add something to the end of the Perl script that passes the values to a PHP script? It could even do it via the query string, maybe also passing an md5 encoded password t

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
string(63) "El Vers퀀culo del D퀀a: Pray For Others: Incoming Prayer Requests" string(65) "El Versículo del Día: Pray For Others: Incoming Prayer Requests" string(63) "El Vers퀀culo del D퀀a: Pray For Others: Incoming Prayer Requests" string(65) "El Versículo del Día: Pray Fo

[PHP] Re: Very Large MySQL Query String

2002-05-06 Thread Kirk Babb
ading files I run the > > function: chunk_split(base64_encode($binaryfile)); > > to encode it, this to transform the binary file to text.. (Works great!!!) > > > > When the query was called to insert the data, nothing happens, > > also no error from mysql... Only think

Re: [PHP] Re: sql injection protection

2012-01-26 Thread Haluk Karamete
>>Re-read his example. He encodes the data in PHP. But decodes the data in >>SQL. So, if you echo the SQL statement, you would see a base64 encoded >>string that SQL then decodes. Got it this time! Up until reading your reply, I was reading Alex's example with my pse

Re: [PHP] Re: sql injection protection

2012-01-26 Thread Jim Lucas
string) casting then? if you were to cast the original input into string using (string), wouldn't you be in the same shoes? Re-read his example. He encodes the data in PHP. But decodes the data in SQL. So, if you echo the SQL statement, you would see a base64 encoded string that SQL th

[PHP] Re: PHP] can't pass complete URL (part of the query string)

2002-11-26 Thread Nicole Lallande
olimit=0&zid=1&lid=1"; method="post"> There is your problem right there. Here are the variables you are passing: ref=http://embitec.com/fishcart/displayem.php3?cat=5 olimit=0 zid=1 lid=1 The URL you want to set ref to needs to be URL encoded. You can use rawurlencode() to

[PHP] PHP & Dynamic XML Pages

2002-04-11 Thread Alex Kirk
. 2. PHP script submits appropriately encoded query string to remote server. 3. PHP script parses returned XML. 4. PHP script generates HTML to send to the user. Do I have this roughly right? Can such a thing even happen? If not, is there a language I can do it in? Oh, and probably very importantl

Re: [PHP] Selecting Rows Based on Row Values Being in Array

2007-07-17 Thread kvigor
This is working so far but I need to add an additional search. This is what I have so far: $in_list = "'".join("','",$cen_chiefs)."'"; $query_cen_chiefs = "SELECT * FROM central WHERE CONCAT(strName,' ',strCity,' ',s

Re: [PHP] Selecting Rows Based on Row Values Being in Array

2007-07-02 Thread kvigor
make sure they are clean: reference the function above > array_walk($list, 'mysql_clean'); > > # This will return a string formated like this. > # '6blue40lbs','7orange50lbs','8orange60lbs','9purple70lbs' > $IN_VALUE = "'&qu

Re: [PHP] saving form data

2004-02-23 Thread Charlie Fiskeaux II
d attach CFI> them to the emailed form results? Then how about in reverse? Add something to the end of the Perl script that passes the values to a PHP script? It could even do it via the query string, maybe also passing an md5 encoded password that only your two scripts know (in order to s

Re: [PHP] Thinking out loud - a continuation...

2012-03-21 Thread Adam Richardson
On Wed, Mar 21, 2012 at 2:39 PM, Jay Blanchard wrote: > ... > I have a project where I have multiple queries and each query uses the > results from the previous query to get it's results. I need to do one of two > things, either out put a multidimensional array that I ca

Re: [PHP] Re: Help! Made a boo-boo encrypting credit cards

2011-03-04 Thread Richard Quadling
; is a good example). Maybe there is a >> character that appears in about 10% of my encryptions that's >> not being encoded properly??? > > Can you come up with a phony CC number that fails the > decryption? If so, please post: > >  $cc_number >  binhex($iv) >  b

Re: [PHP] Selecting Rows Based on Row Values Being in Array

2007-07-01 Thread Jim Lucas
rray_walk($list, 'mysql_clean'); # This will return a string formated like this. # '6blue40lbs','7orange50lbs','8orange60lbs','9purple70lbs' $IN_VALUE = "'".join("','", $list)."'"; $SQL = &quo

Re: [PHP] Selecting Rows Based on Row Values Being in Array

2007-06-29 Thread Jim Lucas
value1 | value1 | So how could I set up a query that would SELECT the entire row, if the row contained $varListof 3outOf_10Fields[1]. Open to any suggestions or work arounds. I'm playing with extract() but code is too crude to even post. I would suggest approaching the problem with a sl

Re: [PHP] File To Blob Corruption

2009-11-14 Thread German Geek
Hi, Could it have something to do with an eof character being encoded or something like that? Do you really need to store the files in the DB? It uses more processing power if stored in the DB because on retrieval, you have to unescape the string and return it. Modern filesystems are optimised

Re: [PHP] Re: Secure data management

2011-10-04 Thread Tommy Pham
On Tue, Oct 4, 2011 at 4:11 PM, Stuart Dallas wrote: > On 5 Oct 2011, at 00:04, Mark Kelly wrote: > > > Hi. > > > > On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: > > > >> http://stut.net/2011/09/15/mysql-real-escape-string-is-not-enough/ > >

Re: [PHP] Lions and tigers and slashes, oh my!

2006-01-13 Thread Richard Lynch
ms. Encoding the data for today's usage in your orginal source data is sheer folly, of the same magnitude that gave us Y2K. You're making trouble for yourself long-term, and probably confusing yourself short-term. RAW data goes in your database: 'Oil & Gas' > When the

[PHP] Re: PHP & Dynamic XML Pages

2002-04-11 Thread J Smith
ble. I know > PHP can parse XML and act appropriately thereupon, but every example I've > looked up shows PHP just parsing a static XML page. > > As best I can tell, the sequence of events if this did work would be: > > 1. User posts HTML form to PHP script. > 2. PHP scri

Re: [PHP] File To Blob Corruption

2009-11-15 Thread Ashley Sheridan
On Sun, 2009-11-15 at 16:43 +1300, German Geek wrote: > Hi, Could it have something to do with an eof character being encoded or > something like that? Do you really need to store the files in the DB? It > uses more processing power if stored in the DB because on retrieval, you > have

Re: [PHP] Re: Secure data management

2011-10-04 Thread Tommy Pham
Oct 2011 at 21:39 Stuart Dallas wrote: >> > >> >> http://stut.net/2011/09/15/mysql-real-escape-string-is-not-enough/ >> > >> > Thanks. I followed this link through and read the full message (having >> missed >> > it the first time round), and

Re: [PHP] Re: sql injection protection

2012-01-26 Thread Maciek Sokolewicz
OP TABLE b' for PHP, it will still be just a string. Nothing special. For MySQL however, it will have turned into 2 different operations, which will both be executed. It will first SELECT a FROM b, and then DROP TABLE b. Can this be resolved by casting the whole query to a string in PHP? No.

Re: [PHP] Selecting Rows Based on Row Values Being in Array

2007-07-01 Thread kvigor
norance, I'll can get it. Also the .join( ). what is this doing I looked at the PHP and MySQL function of each, and haven't seen comparable code. I'm asking because I don't know where we're telling the code to compare the values. You stated... >>> and create one stri

Re: [PHP] Re: Secure data management

2011-10-04 Thread Stuart Dallas
On 5 Oct 2011, at 00:45, Tommy Pham wrote: > On Tue, Oct 4, 2011 at 4:11 PM, Stuart Dallas wrote: > On 5 Oct 2011, at 00:04, Mark Kelly wrote: > > > Hi. > > > > On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: > > > >> http://stut.net/2011/09

Re: [PHP] saving form data

2004-02-23 Thread Evan Nemerson
I do have to rewrite the whole thing in > > CFI> PHP, how would I accept uploaded file attachments and attach > > CFI> them to the emailed form results? > > > > Then how about in reverse? Add something to the end of the Perl script > > that passes the values to a PHP

Re: [PHP] Re: Secure data management

2011-10-04 Thread Stuart Dallas
t; > Hi. >> > >> > On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: >> > >> >> http://stut.net/2011/09/15/mysql-real-escape-string-is-not-enough/ >> > >> > Thanks. I followed this link through and read the full message (having >> &

[PHP] Re: Newbie Question

2001-11-21 Thread Lee Willmann
textarea form element to get the data. It inserts into the DB as basically a single line regardless of the ENTER keystrokes in the data. Now, when I pull it back out I use this: $query = "SELECT * FROM message WHERE msg_id = '$msg_id'"; $query_result = mysql_query($query); $query_row

php-general Digest 1 Mar 2003 16:29:34 -0000 Issue 1912

2003-03-01 Thread php-general-digest-help
;m using JPGraph on a localhost for a website opened via a host redirect. My problem is that nobody can see the graphs but me ('cause I'm on localhost). Any clues? Thx. --- End Message --- --- Begin Message --- try: sele

Re: [PHP] Re: Secure data management

2011-10-04 Thread Stuart Dallas
gt;>> On Tue, Oct 4, 2011 at 4:11 PM, Stuart Dallas wrote: >>> On 5 Oct 2011, at 00:04, Mark Kelly wrote: >>> >>> > Hi. >>> > >>> > On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: >>> > >>> >> http://stu

Re: [PHP] Re: Secure data management

2011-10-04 Thread Tommy Pham
wrote: >> >>> On 5 Oct 2011, at 00:04, Mark Kelly wrote: >>> >>> > Hi. >>> > >>> > On Tuesday 04 Oct 2011 at 21:39 Stuart Dallas wrote: >>> > >>> >> http://stut.net/2011/09/15/mysql-real-escape-string-is-not-en

php-general Digest 30 Nov 2002 12:31:53 -0000 Issue 1735

2002-11-30 Thread php-general-digest-help
ene Brehmer ]>- Re: First PHP 126508 by: -<[ Rene Brehmer ]>- imap_open authentication failure 126509 by: Dumdeedum Re: & in Query String 126511 by: Malcolm Brownell test for ascii or binary string 126513 by: Jonathan Sharp 126514 by

Re: [PHP] Re: Secure data management

2011-10-04 Thread Tommy Pham
ote: >> >>> >>> On 5 Oct 2011, at 00:45, Tommy Pham wrote: >>> >>> On Tue, Oct 4, 2011 at 4:11 PM, Stuart Dallas wrote: >>> >>>> On 5 Oct 2011, at 00:04, Mark Kelly wrote: >>>> >>>> > Hi. >>>>

Re: [PHP] [newbie] Can PHP be a security risk if it's just connecting to MySQL?

2004-05-18 Thread John W. Holmes
't confuse the SQL queries one might run. Is it possible that if one has taken at least that much precaution that a user could still enter malicious script held in a TEXT column? Escaping the data so it's safe to put into a database query is only part of the solution. It really depends on how

php-general Digest 4 Mar 2001 21:30:04 -0000 Issue 547

2001-03-04 Thread php-general-digest-help
php-general Digest 4 Mar 2001 21:30:04 - Issue 547 Topics (messages 42494 through 42525): Re: Stripping HTML selectively? 42494 by: Steve Edberg NETSCAPE Screws QUERY STRING!! 42495 by: Thomas Edison Jr. 42498 by: Meir Kriheli - MKsoft 42499 by: Juanma

Re: [PHP] $_GET and multiple spaces.

2008-01-14 Thread Jochem Maas
"n"] = "entityname" (which is what my ORM-like generic thingy was expecting.) the function I showed isn't name 'inputPost*' for nothing :-) it was specifically written for the task of making request parameter names as generated by http_build_query() usable in th

php-general Digest 22 Mar 2004 01:22:55 -0000 Issue 2660

2004-03-21 Thread php-general-digest-help
s exactly nine months ago. See http://www.php.net/date -- Regards, Ben Ramsey http://benramsey.com http://www.phpcommunity.org/wiki/People/BenRamsey --- End Message --- --- Begin Message --- On Sun, 21 Mar 2004, Marek Kilimajer wrote: > Jeff Oien wrote: > > When I do this: > >

php-general Digest 15 Feb 2003 08:32:44 -0000 Issue 1884

2003-02-15 Thread php-general-digest-help
have been working on a problem that is driving me crazy. I have to create a process in which I upload some info to a table. Since I have to add some different information to that table, I decided to do it like this. 1.I create a temporary table copying the structure of my final table. I.E.

php-general Digest 23 Feb 2004 17:11:59 -0000 Issue 2607

2004-02-23 Thread php-general-digest-help
178520 by: Jason Merrique Re: Slight cleaning of code needed in str_replace command. 178521 by: Dave G 178524 by: Jason Wong Split a string on a space, not in side an HTML tag. 178522 by: Stuart Gilbert Character Encoding Problem 178523 by: roland 178526

php-general Digest 2 May 2004 10:48:04 -0000 Issue 2739

2004-05-02 Thread php-general-digest-help
project that uses lots of German text, and the letters with umlauts don't sort correctly. I'm using the mb_* functions in a few places (to adapt an ASCII-encoded database to XML output for flash, which is always expected to be in UTF-8), but none of them seems to be made for string comparis

php-general Digest 19 Jan 2003 03:23:15 -0000 Issue 1831

2003-01-18 Thread php-general-digest-help
at means it expires right away, or not at all) Anyway to do this??? TIA Rene -- Rene Brehmer This message was written on 100% recycled spam. Come see! My brand new site is now online! http://www.metalbunny.net --- End Message --- --- Begin Message --- I guess I'm dense this morning. In

php-general Digest 22 Mar 2004 13:23:02 -0000 Issue 2661

2004-03-22 Thread php-general-digest-help
he sender and delete the material. --- End Message --- --- Begin Message --- On 22 March 2004 10:31, Paul Hopkins wrote: > Here's the code: > > $a = 676.6; > $b = 0.175; > > $y = $a * (1 + $b); > echo("y: " . $a . " * (1 + " . $b . ") = $y"

php-general Digest 10 Sep 2002 15:53:46 -0000 Issue 1577

2002-09-10 Thread php-general-digest-help
--- Begin Message --- You should always use a proper full URL in the Location header. Try that first. header("Location: http://192.168.254.14/show_products_html.php?&maker_name=$maker_name&PHPSESSID=$PHPSESSID";); I doubt this will solve your problem, but it is good practice an

php-general Digest 23 Aug 2003 06:02:48 -0000 Issue 2253

2003-08-23 Thread php-general-digest-help
f the company in the parent script. Thanks in advance --Pushpinder --- End Message --- --- Begin Message --- On Fri, 2003-08-22 at 12:05, Pushpinder Singh Garcha wrote: > Hello All, > > I am using an application where I retrieve user profile from a MySQL > DB using the Company Name

php-general Digest 21 May 2001 13:20:48 -0000 Issue 699

2001-05-21 Thread php-general-digest-help
This should be compressed. [bunch of text here just to ensure it's big enough to be encoded. the file size is about 5700kb] I'm using IE 5.5 to view the page, and PHP shows the HTTP_SERVER_VARS["HTTP_ACCEPT_ENCODING"] variable as "gzip, deflate", so the browse

php-general Digest 8 Sep 2001 18:30:26 -0000 Issue 864

2001-09-08 Thread php-general-digest-help
66530 by: crorepati 66533 by: B. van Ouwerkerk [-= Your Vacation Winning =-] 66518 by: Tessy103.aol.com a general perl like pares of the query string... 66519 by: Aaron Moore 66525 by: CC Zona 66535 by: Aaron Moore 66536 by: Rasmus Lerdorf include

php-general Digest 20 May 2002 03:20:44 -0000 Issue 1355

2002-05-19 Thread php-general-digest-help
Message --- --- Begin Message --- > INSERT INTO prizeline (id, email, name, address, answers, > date) VALUES ('', '[EMAIL PROTECTED]', 'newman', > '12 Newman ave Auckland', 'In Season, James, John', 'Monday > 20th of Ma

php-general Digest 20 Mar 2001 03:47:17 -0000 Issue 577

2001-03-19 Thread php-general-digest-help
Blomström 44632 by: Jesper Blomström Re: first three characters 44570 by: Johnson, Kirk Re: [PHP-DB] Re: [PHP] Query - Grouping Results 44571 by: Darryl Friesen Re: use strict alternative 44572 by: Johnson, Kirk Re: how do i get a variable type? - not that simple

php-general Digest 26 Dec 2001 22:03:18 -0000 Issue 1075

2001-12-26 Thread php-general-digest-help
nstige Art an Linux Distributionen zu kommen Uptime: 4 days 23 hours 45 minutes --- End Message --- --- Begin Message --- So sprach »Peter« am 2001-12-21 um 18:48:13 +0800 : > How can I avoid this? By using a valid $from adress. It might also help to put the &q

Re: [PHP] authentication problems!

2004-01-20 Thread Scott Taylor
d (making it pointless to even protect the files in the first place). Best Regards, Scott Taylor [EMAIL PROTECTED] wrote: there are a couple of different ways to do this. the "http basic" approach will work just fine. with http basic the id/pw are passed in the headers in an encod

php-general Digest 20 Jun 2003 08:31:10 -0000 Issue 2128

2003-06-20 Thread php-general-digest-help
n W. Holmes 152270 by: Leif K-Brooks 152271 by: Miranda, Joel Louie M Image Border Help 152272 by: Nilaab Y. preg_match 152273 by: Aaron Axelsen Can't pass query string from HTML to PHP 152274 by: Robby Ku 152275 by: Martin Towell 152277

php-general Digest 15 Jan 2002 09:11:04 -0000 Issue 1112

2002-01-15 Thread php-general-digest-help
, fname (firstname), and nickname. What I want to do is search by either first name or last name. Either way, I display the nickname instead of the firstname if it exists. I have no problems on the last name, but when I sort by firstname, the people with nicknames that are very different come u

php-general Digest 7 May 2002 06:58:51 -0000 Issue 1330

2002-05-06 Thread php-general-digest-help
e = 'O'Bryan' value = "Joe "Bruiser" Smith" You can see how the 'O' is taken as the string, and the rest is ignored. Same for the double quotes. ---John Holmes... - Original Message - From: "Robert Cummings" <[EMAIL PROTECTED]>

php-general Digest 7 Mar 2002 10:17:11 -0000 Issue 1212

2002-03-07 Thread php-general-digest-help
/path/to/somewhere/script.pl?var=var >>> >>> but it did not work. >>> >>> I would love any help you could provide me >>> >>> Thanks, >>> Michael >>> >>> >>> -- >>> PHP General Mailing List (http://w

php-general Digest 19 May 2002 14:18:19 -0000 Issue 1354

2002-05-19 Thread php-general-digest-help
ion>--no more output ("print" is > specifically mentioned as an example) can be sent to the browser at that > stage. Try sending youself an email, or logging to a file instead. > > -- > CC --- End Message --- --- Begin Message --- I just upgraded from 4.1.1 to 4.2.1 -- d

php-general Digest 21 Dec 2003 07:41:38 -0000 Issue 2485

2003-12-21 Thread php-general-digest-help
the best place to search the > general-php archives (o; > first place: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=utf-8&group=php.general runner up: http://marc.theaimsgroup.com/?l=php-general olinux __ Do you Yahoo!? New Yahoo! Photos

php-general Digest 26 Jan 2001 16:10:25 -0000 Issue 477

2001-01-26 Thread php-general-digest-help
is > > persistent to the httpd child that called it and not to all. > > Well, yes, but as long as the child lives, it'll be connected which > means that every subsequent request to this child involving a database > connection won't have to suffer the connection

php-general Digest 12 Mar 2001 01:25:40 -0000 Issue 561

2001-03-11 Thread php-general-digest-help
select list 43388 by: Ben Cheng 43394 by: Carsten Gehling Re: PHP & Apache with SSL 43389 by: Rouvas Stathis Re: Sending "pretty" email 43390 by: Todd Cary 43399 by: Derek Sivers 43403 by: Michael Geier 43405 by: Chris Adams

php-general Digest 23 Feb 2001 15:03:46 -0000 Issue 529

2001-02-23 Thread php-general-digest-help
> H ... is there anyway to do this without requiring the page >with the link to use PHP? > >> >>You have to encode each part of the query string on the URL correctly: >> >>> . "&url=" . >>urlencode("http://www.d

php-general Digest 2 May 2001 04:41:51 -0000 Issue 661

2001-05-01 Thread php-general-digest-help
Pedersen 50958 by: Henning Kilset Pedersen 50959 by: Steven Haryanto 50976 by: Steven Haryanto Re: Get the string between custom delimiters 50956 by: Daniel Tryba is CURL right for SSL post to payment processing Authenticate.net 50960 by: Tom Beidler

php-general Digest 18 Mar 2003 10:42:23 -0000 Issue 1945

2003-03-18 Thread php-general-digest-help
thenticated $auth = false; // Formulate the query $query = "SELECT * FROM WMS_User WHERE User_Username = '$_POST[username]' AND User_Password = '$_POST[password]'"; echo $query; // Execute the query and put results in $result $result = mysql_query( $query ) or die (

php-general Digest 25 Feb 2003 14:37:45 -0000 Issue 1904

2003-02-25 Thread php-general-digest-help
I write cookie with javascript and read with php. For > moment is the best solution i have. In future i hope to resolve this > problem and i find solution i post it here. Thanks for help. > kale > > -Original Message- > From: Gonzo [mailto:[EMAIL PROTECTED] >

php-general Digest 14 Jan 2002 21:01:07 -0000 Issue 1111

2002-01-14 Thread php-general-digest-help
h the include() occurs. Any variables available at that line in the calling file will be available within the called file. If the include() occurs inside a function within the calling file, then all of the code contained in the called file will behave as though it had been defined inside that function. [

php-general Digest 16 Jul 2002 09:16:04 -0000 Issue 1467

2002-07-16 Thread php-general-digest-help
... contents of myFile.xml ...\n"); > fputs($fp, "--AaB03x--\n"); That looks quite reasonable, EXCEPT: It's *POSSIBLE* that "Aa03x" will be *IN* the document... I'd choose a longer and more random boundary, and maybe even be 100% sure by using something lik

php-general Digest 29 Oct 2002 05:55:20 -0000 Issue 1672

2002-10-28 Thread php-general-digest-help
gt; > else > > { > >echo " >background='images/shopbg.gif'> You > >did not fill in all the fields, please try again."; > >echo " "; > > display_button("checkout.php", "back", "Back")

php-general Digest 31 Jan 2003 11:51:40 -0000 Issue 1855

2003-01-31 Thread php-general-digest-help
php-general Digest 31 Jan 2003 11:51:40 - Issue 1855 Topics (messages 133706 through 133756): php question - query string 133706 by: Anthony Ritter 133708 by: Philip Hallstrom 133709 by: Lowell Allen php as shell script 133707 by: David H 133710 by

php-general Digest 1 Apr 2001 21:37:24 -0000 Issue 602

2001-04-01 Thread php-general-digest-help
President, Befriend Internet Services LLC http://www.befriend.com/ I'm using PHP on a windows box to access a MySQL database. I noticed that I do not need to open a database connection before performing a mysql_db_query(). Is this bad coding ? Should the database connect

php-general Digest 3 Dec 2001 22:35:43 -0000 Issue 1031

2001-12-03 Thread php-general-digest-help
> > The code is something like this. > > > > $y=str_pad($y,5,".txt"); \\ To give it a filename from a var that contains > > only 1 number (with 1 digit) > > If in this step I do a "echo $y, it shows the correct string. Suposing it > is > &g

  1   2   >