Re: [PHP] Re: PHP editor that doesn't require installation

2004-07-28 Thread rush
"Justin Patrin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Edit locally and FTP manually. > > Or get some kind of mounted FTP filesystemdoesn't Windows XP have > something like this built in? As far as I know, but there is great program that does that. WebDrive. A true l

Re: [PHP] Installing PEAR on Windows

2004-07-28 Thread webmaster
Hi Matt (et al), I've added the c:\www\pear path to both the windows path and also the path in the php.ini file. However it's still coming up with the same error. Is there a way of putting in a temporary path in the go-pear.php file? Nunners Quoting "Matt M." <[EMAIL PROTECTED]>: > > Warning

[PHP] For Loop Problems

2004-07-28 Thread php-list
Hello Everyone, I'm building a hotel management system and I can't seem to figure out why my for() loop doesn't work the way it should. I'm using patTemplate to create the HTML Template (I like using it and I don't want to start a pro/con template war). Here is the script: for ($j = 0; $j < 32; $

[PHP] Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread Harlequin
Hi all. I'm trying to retrieve values from a previously selected dropdown menu. For text I simply use value="$Whatever" But for dropdowns I can't do this - has anyone else come across this before...? -- - Michael Mason Arras People www.arraspeople.co.uk --

Re: [PHP] For Loop Problems

2004-07-28 Thread rush
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > for ($j = 0; $j < 32; $j++) { > for ($i = 0; $i < count($num_days); $i++) { > $template->addVar("room_num", "ROOM_NUM", '101'); > $template->addVar("room_type", "ROOM_TYPE", 'NQQ'); > $template->addVar("gues

[PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread David Robley
On Wed, 28 Jul 2004 20:49, Harlequin wrote: > Hi all. > > I'm trying to retrieve values from a previously selected dropdown menu. > For text I simply use value="$Whatever" > > But for dropdowns I can't do this - has anyone else come across this > before...? > Surprisingly, yes. If the dropdown

[PHP] Accessing a variable from inside a local function

2004-07-28 Thread Frank Munch
Would anyone know how to resolve this scope problem? Or is this possibly something PHP can't (yet) do? The problem is to access a variable in a function foo from a function local to foo. - - - function foo($var_foo) { $my_foo_local = 10; //How can I reach this from inside function bar(...?

Re: [PHP] Installing PEAR on Windows

2004-07-28 Thread Jason Barnett
[EMAIL PROTECTED] wrote: Hi Matt (et al), I've added the c:\www\pear path to both the windows path and also the path in the php.ini file. However it's still coming up with the same error. Is there a way of putting in a temporary path in the go-pear.php file? Yes... ini_set('include_path', 'yourpa

Re: [PHP] For Loop Problems

2004-07-28 Thread Jason Barnett
[EMAIL PROTECTED] wrote: Hello Everyone, I'm building a hotel management system and I can't seem to figure out why my for() loop doesn't work the way it should. I'm using patTemplate to create the HTML Template (I like using it and I don't want to start a pro/con template war). Here is the script:

[PHP] Re: Accessing a variable from inside a local function

2004-07-28 Thread Jason Barnett
Something like this is probably better handled by a class. Then you can access class properties to do what you want. Class yourclass { function foo() { $this->my_foo_local = 10; } function bar($var_bar) { return $this->my_foo_local+$var_bar+1; } } $object = new yourclass(); $

[PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread Harlequin
OK David. But here's the conundrum: a User has already selected a value which is stored in the database. Can I Display a range of tags but make the one the user selected previously as the default...? ??? -- - Michael Mason Arras People www.arraspeople.co.uk

Re: [PHP] Re: Accessing a variable from inside a local function

2004-07-28 Thread Frank Munch
Thanks for the good suggestion, a fully usable workaround if a "cleaner" thing doesn't surface. And for your response time.. well, I have had slower answers in phone-conversations... :-) At 06:37 PM 7/28/2004, Jason Barnett wrote: Something like this is probably better handled by a class. Then

RE: [PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread Ford, Mike [LSS]
On 28 July 2004 12:50, Harlequin wrote: > OK David. > > But here's the conundrum: > > a User has already selected a value which is stored in the database. > Can I Display a range of tags but make the one the user > selected previously as the default...? That's been asked and answered many tim

RE: [PHP] Accessing a variable from inside a local function

2004-07-28 Thread Ford, Mike [LSS]
On 28 July 2004 12:29, Frank Munch wrote: > Would anyone know how to resolve this scope problem? Or is > this possibly > something PHP can't (yet) do? > > The problem is to access a variable in a function foo from a function > local to foo. Actually, your problem is that the function bar is *not

[PHP] WAHT about gd 2.0.28 and Gif support?

2004-07-28 Thread Romain Bourdon
Hi, i saw that 07/21/04, gd 2.0.28 has been released with gif support enabled again (reading and creating). Since the beggining of the month, the Unisys licence for Gif usage is not necessary anymore. So maybe this question has already been asked, but I didn't find it (sorry), will next version P

[PHP] PEAR Spreadsheet_excel_writer problem

2004-07-28 Thread Alex Othold
Hi I have a class the utilizes the excel writer package but I'm having a few problems with it on my production server. My development server is a Windows XP Pro box running PHP version 4.3.5. On this box I dont get any problems and my class generates a valid excel document. My production server

RE: [PHP] Accessing a variable from inside a local function

2004-07-28 Thread Frank Munch
At 07:39 PM 7/28/2004, Ford, Mike [LSS] wrote: Actually, your problem is that the function bar is *not* local to foo. Even though PHP lets you declare functions lexically within the scope of other functions Ouch! Thanks! Got that much wiser! So for keeping the namespace cleaner usi

[PHP] How do I return the error

2004-07-28 Thread Matthew Oatham
Hi I have this function below - if it reurns false I want to also return the error so I can print it in my calling function. Can I do this? Cheers Matt function fileUpload($file) { if ($file['type'] == "image/gif" || $file['type'] == "image/pjpeg"){ if (@copy ($file['tmp_name'], "images/

[PHP] php.net bug tracking tool?

2004-07-28 Thread Andreas Goetz
Which bug tracking tool is php.net using? I know it sounds stupid, but even as I can look at the source on php.net, I can't find any documentation- is this package available for download somewhere? Thanks, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP] How do I return the error

2004-07-28 Thread John Nichel
Matthew Oatham wrote: Hi I have this function below - if it reurns false I want to also return the error so I can print it in my calling function. Can I do this? Cheers Matt function fileUpload($file) { if ($file['type'] == "image/gif" || $file['type'] == "image/pjpeg"){ if (@copy ($file['t

Re: [PHP] How do I return the error

2004-07-28 Thread Matthew Oatham
what about returning the error the copy function would have thrown ? Thanks - Original Message - From: "John Nichel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 28, 2004 3:00 PM Subject: Re: [PHP] How do I return the error > Matthew Oatham wrote: > > Hi I have thi

Re: [PHP] How do I return the error

2004-07-28 Thread John Nichel
Matthew Oatham wrote: what about returning the error the copy function would have thrown ? Thanks http://us4.php.net/copy It only returns true or false. -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

[PHP] document changes

2004-07-28 Thread Rodney Green
Hello, I'm looking for an application that would allow easy documentation of changes to a system, device or application. This would be used to record changes made for future reference. It would simply have categories that would contain a particular device or system and under that device or system

[PHP] Newbie image manipulation question

2004-07-28 Thread Brian Dunning
I'm just about to dive into image uploading & resizing for the first time. Do I need Imagemagick for this, or are PHP's Image tags adequate? All I want to do is let the user upload a graphic, and have PHP automatically scale it to a couple of desired sizes, and name them, pretty basic stuff. I

Re: [PHP] Newbie image manipulation question

2004-07-28 Thread Jason Wong
On Wednesday 28 July 2004 23:05, Brian Dunning wrote: > I'm just about to dive into image uploading & resizing for the first > time. Do I need Imagemagick for this, or are PHP's Image tags adequate? > All I want to do is let the user upload a graphic, and have PHP > automatically scale it to a coup

Re: [PHP] Newbie image manipulation question

2004-07-28 Thread raditha dissanayake
Hello, Brian Dunning wrote: I'm just about to dive into image uploading & resizing for the first time. Do I need Imagemagick for this, or are PHP's Image tags adequate? All I want to do is let the user upload a graphic, and have PHP automatically scale it to a couple of desired sizes, and name

Re: [PHP] Newbie image manipulation question

2004-07-28 Thread Jason Davidson
Hey, you can do what your looking for with phps gd comiled in. You may need to add jpg, gif libs if you dont already have them. Check GD on the php site, there are plenty of examples that cover exactly what your looking for i think. Jason On Wed, 28 Jul 2004 08:05:52 -0700, Brian Dunning <[EMAI

[PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread Harlequin
I ended up with this: Can you see any obvious problems I might miss.? -- - Michael Mason Arras People www.arraspeople.co.uk - "Harlequin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all. > > I'm trying to retr

RE: [PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread Ed Lazor
> > Can you see any obvious problems I might miss.? You're specifying a variable for the option's text, but you also need to specify the option's value. For example, if you were retrieving data from MySQL: while ($record = mysql_fetch_array($results)) { echo "" . $record["Title"] . "\

[PHP] Session Expiration Timeout

2004-07-28 Thread Jordi Canals
Hi all, I'm dealing with sessions in a project. Here people are editing some documents on-line, so it can take long, long time to complete a document. The problem is that when it takes so long to edit a page and hitting the submit button in a form, the session has expired and the user looses all

Re: [PHP] php.net bug tracking tool?

2004-07-28 Thread Curt Zirzow
* Thus wrote Andreas Goetz: > Which bug tracking tool is php.net using? I know it sounds stupid, but even > as I can look at the source on php.net, I can't find any documentation- is > this package available for download somewhere? you can checkout the code from cvs: cvs -d :pserver:[EMAIL PROT

Re: [PHP] How do I return the error

2004-07-28 Thread Curt Zirzow
* Thus wrote Matthew Oatham: > what about returning the error the copy function would have thrown ? * turn display_errors off: ini_set('display_errors', false); * turn track_errors on: ini_set('track_errors', true); if (! copy(...) ) { echo "copy failed: $php_errormsg"; } Curt -- First, let

Re: [PHP] Session Expiration Timeout

2004-07-28 Thread Matt M.
> I've been looking for about changing somewhere the session exiration > time, but only found about the session cookie expiration. > - Wich is the default timeout for a session? And, is some way to know > the expiration time for a session? Take a look at the ini variables. http://us2.php.net/ses

Re: [PHP] Session Expiration Timeout

2004-07-28 Thread Jason Davidson
I beleive there is some session timeout setting in php.ini .. search for session or expire or timeout in that file. Jason On Wed, 28 Jul 2004 20:18:21 +0200, Jordi Canals <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm dealing with sessions in a project. Here people are editing some > documents o

Re: [PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread James E Hicks III
I'd like to make a few changes here to hopefully answer the original question. On Wednesday 28 July 2004 01:35 pm, Ed Lazor wrote: echo ""; while ($record = mysql_fetch_array($results)) { if ($_POST["record"] == $record["ID"]){ $SELECTED = " SELECTED "; } else {

[PHP] PHP Templates Cached on Server

2004-07-28 Thread rogue
Hi all, I am doing some development work on a new server I put together. For some reason, changes I make to PHP templates don't show up right away. I have not figured out how long they take to start showing, but it could be somewhere around 30 - 60 seconds. Where is this setting modified? Thank

[PHP] unset($_COOKIE['foo']) and $_COOKIE['foo'] = '' both don't do anything.

2004-07-28 Thread Daevid Vincent
Linux. PHP5. Maybe I'm doing something wrong, but I've tried both: unset($_COOKIE['foo']); And also $_COOKIE['foo'] = ''; And neither of them seem to do anything. I can still see the cookie and worse, the value if I do foreach ($_COOKIE as $key => $val) echo "$key = $val"; -- PHP General Ma

Re: [PHP] unset($_COOKIE['foo']) and $_COOKIE['foo'] = '' both don't do anything.

2004-07-28 Thread Matt M.
> unset($_COOKIE['foo']); > > And also > > $_COOKIE['foo'] = ''; Are you trying to delete the cookie on the client side? if so try: setcookie ('foo', '', time() - 3600); http://us2.php.net/setcookie -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] php5 and objects

2004-07-28 Thread Krzysztof Gorzelak
Hello, I'm trying to make this code to work: // start of code abstract class Strona { abstract public function generuj_strone(); function foo() { generuj_strone(); } } class Katalog extends Strona { public function generuj_strone() { echo "OK"; } } $bar

[PHP] is_numeric questions

2004-07-28 Thread Jeff Oien
Does is_numeric include commas decimals and dollar signs? How do I use this to error check form data? I'm having a hard time figuring out what the correct syntax is for that application. Thanks. Jeff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub

RE: [PHP] unset($_COOKIE['foo']) and $_COOKIE['foo'] = '' both don't do anything.

2004-07-28 Thread Daevid Vincent
No. I'm trying to delete it from PHP memory, but keep the cookie on their client in the cookie.txt file or wherever it's stored. The idea is for added security. I just don't want traces of it around after the initial login. > -Original Message- > From: Matt M. [mailto:[EMAIL PROTECTED] >

[PHP] php5 and object

2004-07-28 Thread Krzysztof Gorzelak
Hello, I'm trying to make this code to work: // start of code abstract class Strona { abstract public function generuj_strone(); function foo() { generuj_strone(); } } class Katalog extends Strona { public function generuj_strone() { echo "OK"; } } $bar

Re: [PHP] is_numeric questions - followup

2004-07-28 Thread Jeff Oien
Jeff Oien wrote: Does is_numeric include commas decimals and dollar signs? How do I use this to error check form data? I'm having a hard time figuring out what the correct syntax is for that application. Thanks. Jeff I think what I should have asked is how to tell if something is not numberic. Je

[PHP] Re: is_numeric questions

2004-07-28 Thread Torsten Roehr
"Jeff Oien" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Does is_numeric include commas decimals and dollar signs? > > How do I use this to error check form data? I'm having a hard time > figuring out what the correct syntax is for that application. Thanks. > Jeff It surely will n

Re: Re: [PHP] is_numeric questions - followup

2004-07-28 Thread holmes072000
> From: Jeff Oien <[EMAIL PROTECTED]> > > > Does is_numeric include commas decimals and dollar signs? > > > > How do I use this to error check form data? I'm having a hard time > > figuring out what the correct syntax is for that application. Thanks. > > Jeff > > I think what I should have aske

Re: [PHP] php5 and object

2004-07-28 Thread Stephen Sadowski
http://us4.php.net/manual/en/language.oop5.abstract.php The short is that you can't do anything more than define a function in an abstract class. IIRC, change abstract to interface, and you'll probably be okay. On Wed, 28 Jul 2004 21:18:26 +0200, Krzysztof Gorzelak <[EMAIL PROTECTED]> wrote: > H

Re: [PHP] unset($_COOKIE['foo']) and $_COOKIE['foo'] = '' both don't do anything.

2004-07-28 Thread Matt M.
> No. I'm trying to delete it from PHP memory, but keep the cookie on their > client in the cookie.txt file or wherever it's stored. > > The idea is for added security. I just don't want traces of it around after > the initial login. I am not sure about deleting a superglobal, but even if you do

Re: [PHP] php5 and object

2004-07-28 Thread Krzysztof Gorzelak
A change to interface gives me such error : Interface function Strona::foo() cannot contain body Krzysztof Gorzelak [EMAIL PROTECTED] Uzytkownik "Stephen Sadowski" <[EMAIL PROTECTED]> napisal w wiadomosci news:[EMAIL PROTECTED] > http://us4.php.net/manual/en/language.oop5.abstract.php > > The s

Re: [PHP] php5 and objects

2004-07-28 Thread Curt Zirzow
* Thus wrote Krzysztof Gorzelak: > // start of code > abstract class Strona { > > abstract public function generuj_strone(); > > function foo() { > generuj_strone(); > } > } > > class Katalog extends Strona { > public function generuj_strone() { > echo "OK"; >

Re: [PHP] php5 and object

2004-07-28 Thread Curt Zirzow
* Thus wrote Stephen Sadowski: > http://us4.php.net/manual/en/language.oop5.abstract.php > > The short is that you can't do anything more than define a function in > an abstract class. Negative. It is perfectly fine to have code within an abstract class. The documentation needs to get expanded a

Re: [PHP] php5 and objects

2004-07-28 Thread Krzysztof Gorzelak
Uzytkownik "Curt Zirzow" <[EMAIL PROTECTED]> napisal w wiadomosci > * Thus wrote Krzysztof Gorzelak: > > // start of code > > abstract class Strona { > > > > abstract public function generuj_strone(); > > > > function foo() { > > generuj_strone(); > > } > > } > > > > class Kata

Re: [PHP] Session Expiration Timeout

2004-07-28 Thread Jordi Canals
Matt M. wrote: - Wich is the default timeout for a session? And, is some way to know the expiration time for a session? Take a look at the ini variables. http://us2.php.net/session session.gc_maxlifetime Thanks Matt. for your quick and clear answer. I've readed about it, and seen the default is 24

Re: [PHP] PHP Templates Cached on Server

2004-07-28 Thread Justin Patrin
On Wed, 28 Jul 2004 14:41:20 -0400, rogue <[EMAIL PROTECTED]> wrote: > Hi all, > > I am doing some development work on a new server I put together. For > some reason, changes I make to PHP templates don't show up right away. > I have not figured out how long they take to start showing, but it > co

[PHP] reading txt file - certain lines

2004-07-28 Thread Dustin Krysak
Hi there.. .I am displaying info (on music) from a text file with the following code... Now the contents of said text file would read something like the following: Liarby Sex Pistols"Never Mind The Bollocks"Played: 2004/07/28, 1:48:29 PM--Let's Rave Onby The Raveonettes"Chain Gang

Re: [PHP] reading txt file - certain lines

2004-07-28 Thread John Nichel
Dustin Krysak wrote: Hi there.. .I am displaying info (on music) from a text file with the following code... Now the contents of said text file would read something like the following: Liarby Sex Pistols"Never Mind The Bollocks"Played: 2004/07/28, 1:48:29 PM--Let's Rave Onby The Rave

[PHP] Problem with $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW']

2004-07-28 Thread Mark Collin
Does anybody have any ideas on how I can prevent caching of $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'], or clear them? I currently have a restricted area on the site I'm currently designing and all works well until I log out. When I log out I successfully destroy the session and the

Re: Re: [PHP] php5 and object

2004-07-28 Thread holmes072000
> From: Stephen Sadowski <[EMAIL PROTECTED]> > Subject: Re: [PHP] php5 and object > > http://us4.php.net/manual/en/language.oop5.abstract.php > > The short is that you can't do anything more than define a function in > an abstract class. > > IIRC, change abstract to interface, and you'll probabl

Re: [PHP] Problem with $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW']

2004-07-28 Thread holmes072000
> From: "Mark Collin" <[EMAIL PROTECTED]> > > Does anybody have any ideas on how I can prevent caching of > $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'], or clear them? You can't clear them; they're sent by the browser. It'll keep resending the same values and you're script will authent

Re: [PHP] Showing all users who are logged in

2004-07-28 Thread Jason Giangrande
Vail, Warren wrote: I did one application where I used the PHP session table to tell who was logged on, and which area of the application they were most recently in. One of several flaws, was that I used Kill session to logoff, and that caused them to disappear from any count of users logged on. C

Re: [PHP] How do I return the error

2004-07-28 Thread Tom Rogers
Hi, Wednesday, July 28, 2004, 11:56:16 PM, you wrote: MO> Hi I have this function below - if it reurns false I want to MO> also return the error so I can print it in my calling function. MO> Can I do this? MO> Cheers MO> Matt MO> function fileUpload($file) { MO> if ($file['type'] == "image/gi

[PHP] strpos mystery

2004-07-28 Thread Jon Drukman
with this code fragment: $string='/mobile/phone.html'; if (strpos($string,'/mobile/')!==false) { print "one: yes\n"; } if (strpos($string,'/mobile/')===true) { print "two: yes\n"; } ?> only the first if statement prints anything. why is !== false not the same as === true ? -jsd- -- PHP General

Re: [PHP] php5 and object

2004-07-28 Thread raditha dissanayake
Curt Zirzow wrote: * Thus wrote Stephen Sadowski: http://us4.php.net/manual/en/language.oop5.abstract.php The short is that you can't do anything more than define a function in an abstract class. Negative. It is perfectly fine to have code within an abstract class. The documentation needs

Re: [PHP] strpos mystery

2004-07-28 Thread Justin Patrin
On Wed, 28 Jul 2004 17:50:01 -0700, Jon Drukman <[EMAIL PROTECTED]> wrote: > with this code fragment: > > > $string='/mobile/phone.html'; > if (strpos($string,'/mobile/')!==false) { print "one: yes\n"; } > if (strpos($string,'/mobile/')===true) { print "two: yes\n"; } > > ?> > > only the first

[PHP] Re: Retrieving Stored Values for Dropdown Menu

2004-07-28 Thread David Robley
On Wed, 28 Jul 2004 21:19, Harlequin wrote: > OK David. > > But here's the conundrum: > > a User has already selected a value which is stored in the database. Can I > Display a range of tags but make the one the user selected > previously as the default...? > > ??? > Yes you can. I'm not goi

[PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
I have a database generated page and I want to show a "Print Version" in a new window when somebody selects the print option. http://www.test.com/docs/view_record.php?id=1 http://www.test.com/docs/print_record.php?id=1 What is the "correct" way to open the page from the print link to a new page?

Re: Re: [PHP] reading txt file - certain lines

2004-07-28 Thread Dustin Krysak
Yeah I do not really have the option to use a database here since the way the data is output is limited to a text file.. the files are populated by a program that takes the currently playing tracks out of Itunes (mp3 player) on my mac. d On 28-Jul-04, at 3:26 PM, [EMAIL PROTECTED] wrote: F

Re: [PHP] Java Script or PHP

2004-07-28 Thread zareef ahmed
--- Karl-Heinz Schulz <[EMAIL PROTECTED]> wrote: > I have a database generated page and I want to show > a "Print Version" in a > new window when somebody selects the print option. > > http://www.test.com/docs/view_record.php?id=1 > > http://www.test.com/docs/print_record.php?id=1 > > What is

RE: [PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
Zareef, Thank you for the reply but I may was not very clear. I don't know how to pass the record id from the view_record?id=1 to print_record?=whateverTheViewRecordId was. Karl-Heinz -Original Message- From: zareef ahmed [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 11:03

[PHP] Browser reload problem

2004-07-28 Thread Ashley M. Kirchner
PayPal passes a ton of data back to us when someone's done purchasing something. I use some of that information and shove it all into a database. Problem is, if someone hits reload on their browser, I get the same data re-inserted again. Reload the page four times, and I will get four rec

RE: [PHP] Java Script or PHP

2004-07-28 Thread zareef ahmed
--- Karl-Heinz Schulz <[EMAIL PROTECTED]> wrote: > Zareef, > > Thank you for the reply but I may was not very > clear. > > I don't know how to pass the record id from the > view_record?id=1 to > print_record?=whateverTheViewRecordId was. > Consider it $id="select id from database" http://ww

Re: [PHP] Java Script or PHP

2004-07-28 Thread Curt Zirzow
* Thus wrote Karl-Heinz Schulz: > I have a database generated page and I want to show a "Print Version" in a > new window when somebody selects the print option. > > http://www.test.com/docs/view_record.php?id=1 > > http://www.test.com/docs/print_record.php?id=1 > > What is the "correct" way to

RE: [PHP] Java Script or PHP

2004-07-28 Thread Karl-Heinz Schulz
Thank you for your help. -Original Message- From: zareef ahmed [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 11:25 PM To: Karl-Heinz Schulz Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Java Script or PHP --- Karl-Heinz Schulz <[EMAIL PROTECTED]> wrote: > Zareef, > > Thank you f

[PHP] list($bar['CompanyCode'], $CompanyDB) = mysql_fetch_row($sth) fails.

2004-07-28 Thread Daevid Vincent
Linux. PHP5. Why does this fail when using an array element, but using a variable will work? Why should PHP care what the variable is I'm trying to store into? list($bar['CompanyCode'], $CompanyDB) = mysql_fetch_row($sth); But this works: list($foo, $CompanyDB) = SQL_ROW($sth); And of course

Re: [PHP] Browser reload problem

2004-07-28 Thread Curt Zirzow
* Thus wrote Ashley M. Kirchner: > >PayPal passes a ton of data back to us when someone's done > purchasing something. I use some of that information and shove it all > into a database. Problem is, if someone hits reload on their browser, I > get the same data re-inserted again. Reload t

Re: [PHP] strpos mystery

2004-07-28 Thread Jason Barnett
Because === and !== check the type as well. Of you set $string = 'blah' you'll still get the same result. If you were using != and == both would print. strpos() returns an int, so comparing it to false with === is always false. The same would be true for true. That's half right. strpos actually *

Re: [PHP] strpos mystery

2004-07-28 Thread Jason Barnett
Heck, even I got it wrong ;) True check below should always fail... Jason Barnett wrote: Because === and !== check the type as well. Of you set $string = 'blah' you'll still get the same result. If you were using != and == both would print. strpos() returns an int, so comparing it to false with ==

Re: [PHP] list($bar['CompanyCode'], $CompanyDB) = mysql_fetch_row($sth) fails.

2004-07-28 Thread Justin Patrin
On Wed, 28 Jul 2004 20:47:37 -0700, Daevid Vincent <[EMAIL PROTECTED]> wrote: > Linux. PHP5. > > Why does this fail when using an array element, but using a variable will > work? Why should PHP care what the variable is I'm trying to store into? > > list($bar['CompanyCode'], $CompanyDB) = mysql_f

Re: [PHP] list($bar['CompanyCode'], $CompanyDB) = mysql_fetch_row($sth) fails.

2004-07-28 Thread Jason Davidson
check the manual for list. It mentions using only numerical array indices for list. There is a warning on it even i beleive. Jason On Wed, 28 Jul 2004 20:47:37 -0700, Daevid Vincent <[EMAIL PROTECTED]> wrote: > Linux. PHP5. > > Why does this fail when using an array element, but using a variab

[PHP] Graphing Webstats using MRTG/PHP/MYSQL?

2004-07-28 Thread Louie Miranda
has anyone know any tools related to this? Graphing Webstats using MRTG/PHP/MYSQL? -- Louie Miranda http://www.axishift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php