Re: [PHP-DB] [suspicious - maybe spam] How to deal with " ...?

2005-05-05 Thread Firan Corneliu
Another method could be the base64_encode(),base64_decode(). Something like this : echo("codigo:". $row['codigo'] ." | familia: ". $row['familia']." \n"); Hope it helps, capi On Wed, 2005-05-04 at 20:05 -0700, Ardilla Roja wrote: > Hi, > > I'm working in a database of products. Until now I'm ab

[PHP-DB] RE: Looking for help.

2005-05-05 Thread Finner, Doug
O'Reilly has several good books available as well as about a ton of on-line articles (OnLamp.com) by folks like John Coggeshall that were a big help as I got started. Also Wiley press has one of those '15 hour crash course' books on Apache, MySQL, and PHP. The PHP manual is a pretty good place t

RE: [PHP-DB] Transfering post data to a series of pages.

2005-05-05 Thread Perry, Matthew (Fire Marshal's Office)
After looking at what I wanted to do I see no good reason I can't do most of what we needed with function calls. The others can be handled with plugging more data into my session array. Somehow I thought this was a poor way of coding (I don't know why). Thank you everyone for your advice! - Matt

[PHP-DB] Drop Down Menus

2005-05-05 Thread chintan
hey guys i wrote this code from another code of zend.php Can anyone tell me how do i update the value of second menu and third one? can i do that without javascript? $XX = "No data availabe!"; echo ""; $_SESSION['ItemType'] = $_REQUEST['ItemType']; echo ""; $aku = mysql_query("SELECT ItemType FROM

RE: [PHP-DB] [suspicious - maybe spam] How to deal with " ...?

2005-05-05 Thread Bastien Koert
convert them to ascii characters, then you don't have the issue bastien From: Ardilla Roja <[EMAIL PROTECTED]> Reply-To: Ardilla Roja <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: [PHP-DB] [suspicious - maybe spam] How to deal with " ...? Date: Wed, 4 May 2005 20:05:51 -0700 Hi, I'm working

RE: [PHP-DB] Transfering post data to a series of pages.

2005-05-05 Thread Bastien Koert
depending on what you want to do, here is an example of using functions in one page to make things happen http://www.weberdev.com/get_example-4085.html bastien From: "Perry, Matthew (Fire Marshal's Office)" <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: RE: [PHP-DB] Transfering post data t

Re: [PHP-DB] Problem Using Sessions. .. .

2005-05-05 Thread Patel, Aman
Shawn Singh wrote: that was very helpful...Thank you. One question I have is that I want to ensure that my admin page cannot get accessed unless a variable that was registered upon a successful login has been passed into the session...what can I do to ensure this? There are several ways to do this

RE: [PHP-DB] Drop Down Menus

2005-05-05 Thread Bastien Koert
to do it without js, you'll need to roundtrip it to the server, check for the values that you have and run a query to generate the next set of items for the drop down. And do this for each time that you need a menu generated. Bastien From: chintan <[EMAIL PROTECTED]> To: php-db@lists.php.net Sub