RE: [PHP] update two frames at once?

2001-03-12 Thread Tanya Brethour
don't think > anyone is strictly limited to just HTML. > > Chad > > -Original Message----- > From: Tanya Brethour [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 12, 2001 3:21 PM > To: Angerer, Chad > Cc: 'Michael George'; [EMAIL PROTECTED

Re: [PHP] array

2001-03-12 Thread Tanya Brethour
Not that I am a php expert.. but it doesnt look like you ever assign products to anything. Shouldnt you be doing something like $products["$prod_id"] = $row["prod_id"] Also.. if you have more than one rows.. it would overwrite the array. Do you want a 2-d array? -Tanya On Mon, 12 Mar 2001, [

RE: [PHP] update two frames at once?

2001-03-12 Thread Tanya Brethour
Well in straight/plain html frames.. I dont believe you can. -Tanya On Mon, 12 Mar 2001, Angerer, Chad wrote: > Yes you can.. use Javascript > > Look here.. http://www.virtualgeoff.com/junkyard/frames/multiple/ > > Chad > > -Original Message- > From: Michael George [mailto:[EMAIL PR

Re: [PHP] update two frames at once?

2001-03-12 Thread Tanya Brethour
I dont believe so. -Tanya On Mon, 12 Mar 2001, Michael George wrote: > Hello al! > > Is it possible to have two frames updated when cliking on one link? I have a > page that is broken into 4 parts: > master title > section title > d section screen > i > r > . > > what I wan

Re: [PHP] getting client info

2001-03-12 Thread Tanya Brethour
I am not sure if there is a way to do this. The only thing you could do is determine level of encryption by browser version. This might work in some cases.. but obviously if they have an old browser version (whose encryption level is low by default) and they install like an encryption_pack (IE e

Re: [PHP] what are the steps to recompile PHP?

2001-03-12 Thread Tanya Brethour
I would assume that you need to 1) make sure you install it in the same place :) 2) if you already compiled a Apache binary you need to copy the new binary over.. or do another make install. I would just follow the steps you did when you first installed it.. and it should overwrite everything yo

Re: [PHP] Get next record

2001-03-12 Thread Tanya Brethour
Umm if you are talking about records in the sense of a table.. you could do something like "SELECT record_id,record_date FROM table" and then go through the array and compare the dates. You only do one query from the database and then you know which records match by hanging onto their record_id.

Re: [PHP] Trouble setting up

2001-03-12 Thread Tanya Brethour
err not the library.. but php.ini -Tanya On Mon, 12 Mar 2001, Luis wrote: > Hello all I new to the php . I was wondering > if anyone could help me out with a little problem > that I'm having. I download the new version of > php. I installed mysql , apache (new version) and > php. > > What i'

[PHP] Re: Trouble setting up

2001-03-12 Thread Tanya Brethour
Did you copy the php library over? And second.. are you actually going directly to the php script OR.. is it named index.php and you are only going to the directory? -Tanya On Mon, 12 Mar 2001, Luis wrote: > Hello all I new to the php . I was wondering > if anyone could help me out with a

[PHP] Escape slashes?

2001-03-12 Thread Tanya Brethour
Hi! I am trying to do some fileuploading.. but I am running into a problem with escaping spaces. Basically, I have this directory that includes spaces and I need to be able to change the spaces to "\ " so for example.. my directory is: Fun Documents I need to change it to: Fun\ Documents That

[PHP] Re: [PHP-DB] Passing vars

2001-02-14 Thread Tanya Brethour
iables and urlencode them before > passing them. > $var1=urlencode($var1) > then you have test.php?cheese="" > > OR > > 2. Another way would be to use a form: > > > and then add the 6 variables as > > > > > > > > > and then

[PHP] Passing vars

2001-02-14 Thread Tanya Brethour
Quick question.. If I have like 6 variables to pass to another PHP script... and some of the vars are actually multiple lines of text (lets say over 30 lines). What is the best way of doing this? I would like to avoid doing something like test.php?cheese=(30 lines of stuff) Thanks in advance!

Re: [PHP] Qoute problem

2001-02-14 Thread Tanya Brethour
do a > different character like | and then insert it into database. > Do the reverse before displaying the data, it should fix your problem.. > > Tanya Brethour wrote: > > > Hi! I was hoping that someone could help me out. I am not positive if I > > understand whats goin

[PHP] Qoute problem

2001-02-14 Thread Tanya Brethour
Hi! I was hoping that someone could help me out. I am not positive if I understand whats going on.. so let me try to explain. This is a process to modify news articles in a MySQL database. (From the point after picking the article to modify) PHP Script #1: I grab everything from the database