[PHP] MySQL Current Row??

2002-09-18 Thread Beeman
What function/array index should I use to determine the current row of a MySQL query when outputting using a do..while.. Loop?

[PHP] Frames JavaScript and PHP

2002-07-02 Thread Beeman
I am trying to get the value of a frames path into a PHP variable. Is it possible to access DOM values from PHP?? If not how do I set a PHP variable to the value of the window.frame.path that I get in javascript? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP] Form Variables

2002-06-07 Thread Beeman
ince PHP 4.1.0 too > // See docs for details (see also extract()) > import_request_variables('gpc', 'r_'); > print $r_phrase; > > Those are some options. See also: > > http://www.php.net/manual/en/language.variables.predefined.php > > Regards, >

Re: [PHP] Form Variables

2002-06-07 Thread Beeman
I just read the release notes and do not believe they are referring to my dilemma. Here is the code I am using. Just a basic form <> Phrase: <> On 6/7/02 9:08 PM, "Stuart Dallas" <[EMAIL PROTECTED]> wrote: > On Saturday, June 8, 2002 at 1:56:35 AM, you wrote: > >> I rece

[PHP] Form Variables

2002-06-07 Thread Beeman
I recently installed PHP 4.2.1 on my G4 Powerbook (OS X v10.1.4) running Apache 1.3.2. I have verified that php is running and apache is running. When I access a page locally http://127.0.0.1/simple_form.php, fill in the only text box and submit the form to form_act.php. The variable doesn't exist

[PHP] Re: Cobalt RAQ4 apache config index.php

2002-01-29 Thread Beeman
earch for DirectoryIndex. > > NOTE: Remember that changing these files manually will void your Cobalt > warranty! > > Mike Frazer > > > "Beeman" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I am usi

[PHP] Cobalt RAQ4 apache config index.php

2002-01-29 Thread Beeman
I am using a Cobalt RAQ4 server and need to edit my config file to allow index.php as the directory index. the config file appears non standard, ad it has the pearl for the web based server administration.. What and where do I need to add the DirectoryIndex? also how do I disable the directory lis

Re: [PHP] Update Query - Urgent

2001-10-23 Thread Beeman
Does the form you are using to update use checkboxes?? what kind of values are being passed? "Mak" <[EMAIL PROTECTED]> wrote in message 008001c15bc8$3c73e6a0$7e8f9cca@athlon700delta">news:008001c15bc8$3c73e6a0$7e8f9cca@athlon700delta... > What does the error message say? What sort of error is it?

Re: [PHP] Re: DATE FORMAT ISSUES

2001-10-22 Thread Beeman
That worked. Thanks a lot... You rock -Beeman "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Yeah, I select it using UNIX_TIMESTAMP(creation_datetime) and then I am > > using date("M d, Y g:ia"

Re: [PHP] Re: DATE FORMAT ISSUES

2001-10-22 Thread Beeman
t statement. "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Are you retrieving it using MySQL's UNIX_TIMESTAMP() function? PHP's > date() function needs a unix timestamp to work with. > > -Rasmus

[PHP] Re: DATE FORMAT ISSUES

2001-10-22 Thread Beeman
ave in your database a DATE field instead of DATETIME field? > > "Beeman" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I have inserted the date into MySQL using now() in the query. However, > when > > I ret

[PHP] DATE FORMAT ISSUES

2001-10-22 Thread Beeman
I have inserted the date into MySQL using now() in the query. However, when I retrieve the using MySQL_Date_Format in the query the time is always wrong. on the other hand, if I format the date using Date() in PHP it always makes the date DEC 31 1969 at 700PM. Please Help -- PHP General Mailin