[PHP] Why wouldn't a simple script work on my server that works on otherservers?

2003-07-29 Thread Dan Anderson
as Why would this affect things? -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why wouldn't a simple script work on my server thatworks on other servers?

2003-07-30 Thread Dan Anderson
> Also, what (if any) errors does PHP/Browser report? That's the really bizarre thing. It spits out the entire PHP code as the web page. The browser then tries to render it and can produce some really humourous results. And execute permissions shouldn't matter, right? -Dan --

[PHP] hehe....is this a repost?

2003-07-30 Thread Dan Anderson
Student Suspended over Use of PHP: http://bbspot.com/News/2000/6/php_suspend.html -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] looking for scheduling program

2003-07-30 Thread Dan Joseph
Hi Chris, its always more fun to write your own, however, check php project our (might be spelled projekt, I can't remember). Should be on freshmeat or sourceforge. It might do what you want. -Dan Joseph > -Original Message- > From: Chris W. Parker [mailto:[EMAI

RE: [PHP] Opinions on Micro$oft .NET

2003-07-31 Thread Dan Joseph
ave a public news server if you don't. -Dan Joseph > -Original Message- > From: Jay Paulson [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 1:36 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Opinions on Micro$oft .NET > > > I know this is a little off

RE: [PHP] Opinions on Micro$oft .NET

2003-07-31 Thread Dan Joseph
. Windows Server runs fine on the same types of hardware that Linux does. -Dan Joseph > -Original Message- > From: Chris W. Parker [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 1:50 PM > To: Jay Paulson; [EMAIL PROTECTED] > Subject: RE: [PHP] Opinions on Micro$o

RE: [PHP] Opinions on Micro$oft .NET

2003-07-31 Thread Dan Joseph
Hi, Yeah, the framework does. The free editor is for web apps, the Visual Studio is for normal apps. -Dan Joseph > -Original Message- > From: Chris W. Parker [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 2:04 PM > To: Dan Joseph; Jay Paulson; [EMA

RE: [PHP] include help please

2003-07-31 Thread Dan Joseph
Hi, Take the quotes off around the $page variable. -Dan Joseph > -Original Message- > From: LoonySalmon [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 4:07 PM > To: [EMAIL PROTECTED] > Subject: [PHP] include help please > > > i am looking to

Re: [PHP] Multiple targets with fscanf

2003-08-01 Thread Dan Anderson
nd_position)); } ?> Note that you could significantly compact the code by putting the strpos calls in substr. This would, however, obfusicate it. -Dan On Fri, 2003-08-01 at 07:15, Denis 'Alpheus' Cahuk wrote: > Hello! > > I'll get strait to the point: >

Re: [PHP] Multiple targets with fscanf

2003-08-01 Thread Dan Anderson
> Thanks a lot. hehe no thanks needed. Just remember to read up on the functions so you'll know how they work. ;-) -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple targets with fscanf

2003-08-02 Thread Dan Anderson
> I've found some bugs there too, so dont worry. Like the lol...sorry but it was a quick reply... -dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regular expression question

2003-08-04 Thread Dan Phiffer
t;" gives: Array ( [0] => Array ( [0] => ) [1] => Array ( [0] => attr="value" ) ) A $subject of "\">" gives: Array ( [0] => Array ( [0] => Thanks for any help, -Dan -- P

Re: [PHP] Regular expression question

2003-08-04 Thread Dan Phiffer
Actually, this is for a general purpose templating that might use < and > or [ and ] (i.e. [element attribute="value"]), but I suppose the same character entity requirement could be applied to other "boundary characters." Somehow it didn't occur to me. Thanks for

[PHP] Old version of PHP

2003-08-08 Thread Dan Phiffer
inally, what is the earliest language version that can reliably handle a PEAR object? Thanks, -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Old version of PHP

2003-08-09 Thread Dan Phiffer
Thanks for all the feedback, guys. Is there an errata page somewhere that lists known bugs in the PHP interpretter? Thanks, -Dan "Jason Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Friday 08 August 2003 09:43, Justin French wrote: > > > i t

[PHP] Possible bug w/ open_basedir?

2003-08-09 Thread Dan Brown
It seems to me that this may be a bug with PHP, but I'm not sure what to do to confirm or disconfirm that. Any suggestions would be appreciated. Thanks! - -- Dan Brown, KE6MKS, [EMAIL PROTECTED] "Since all the world is but a story, it were well for thee to buy the more enduring

RE: [PHP] trying to match the front and end...

2003-08-09 Thread Dan Joseph
amic. I guess I just found it easier to go over it with a couple regular expressions, then got to thinking maybe I could combine it into one. What suggestion would you have? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] how do i get assosciative name in foreach

2003-08-10 Thread Dan Anderson
I want to send an assosciative array to a foreach loop. Is there any way to get the name? For instance, now I have: I want to do: Is what I want possible? Thanks in advance, Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] trying to match the front and end...

2003-08-10 Thread Dan Joseph
it into one regular express, instead of two. Can someone give me an example of matching the beginning and end at the same time? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Old version of PHP

2003-08-10 Thread Dan Phiffer
k on the PHP website a bit misleading since that page serves more purposes than simply reporting bugs. Okay enough of my bitching, -Dan - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> Newsgroups: php.general To: <[EMAIL PROTECTED]> Sent: Friday, Augus

[PHP] does PHP have a equivalent to the C++ #ifndef #define?

2003-08-11 Thread Dan Anderson
een required in main.php, I get an error about the function being defined twice. Is there an equivalent to the C++: #ifndef some_header_file_h #define some_header_file_h // insert code that shouldn't be repeated here #endif // some_header_file_h Thanks in advance, Dan Anderson -- PHP Genera

RE: [PHP] Class Design Question...

2003-08-14 Thread Dan Joseph
ce, and something for me to think about. I have a habbit of learning something new, and then overusing it to death... I'm sure I'm guitly of making spaghetti. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: apache2 + php 4.3.2 on solaris not starting

2003-08-14 Thread Dan Phiffer
This probably doesn't help you much but Apache 2 and PHP are not expected to play well together. Which makes me wonder, will PHP 5 be more Apache 2 friendly? Thanks, -Dan "Stacey Conrad" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I

[PHP] how do I spoof a get request

2003-08-14 Thread Dan Anderson
hink I need to look over the http specifications, but is there an easier way? Also, is there any easy way to spoof posting a form? Thanks in advance, Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Running PHP 5.0 (to play with) concurrent with PHP 4

2003-08-14 Thread Dan Anderson
g PHP 5 into it? Or is the only way to run it to find a non production box? I don't suppose anybodys remastered KNOPPIX with PHP 5.0? -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Importing file

2003-08-14 Thread Dan Anderson
I've actually run into a similar problem trying to use spanish in mail. I can't remember the exact solution off the top of my head but it basically involved going from ASCII to UTF. -Dan On Tue, 2003-08-12 at 19:23, Richard Baskett wrote: > When I import a file using the file() f

[PHP] Two questions about PHP 5

2003-08-14 Thread Dan Phiffer
that... -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Class Design Question...

2003-08-14 Thread Dan Joseph
ganized, but then again, if its sloppy in the performance area, I'll probably change my ways. So, I guess we're all right, depending on the situation, it could or hinder performance. As for more information right now, don't really have anything specific I could toss out there.

RE: [PHP] Class Design Question...

2003-08-14 Thread Dan Joseph
Hi, Are there any performance differences that are noticable in a 300-400 line PHP script if you overuse classes rather than straight functions? -Dan Joseph > -Original Message- > From: Chris W. Parker [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 06, 2003 1:0

[PHP] Object method overloading

2003-08-14 Thread Dan Phiffer
'Bar'; print_r($t); ?> Output: __set(a, Foo) overload_test Object ( [a] => Foo ) Thanks, -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] trying to match the front and end...

2003-08-14 Thread Dan Joseph
my results in a day or two when I get it situated. Thanks to you both! -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] trying to match the front and end...

2003-08-14 Thread Dan Joseph
's will work if it can match the beginning and the end successfully. I should probably explain myself further. Sometimes there won't be anything to replace at the front, and sometimes nothing at the end. So it'd still need to do the front and/or end wether or not they both exist. Is there a way to tweak these to do that? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Object method overloading

2003-08-14 Thread Dan Phiffer
table. If nobody is ever going to look at or reuse your code, it's arguable such a feature merits a second glance. Personally, I appreciate these kinds of language features, but perhaps that's because I learned most of what I know about programming in C++. Thanks, -Dan <[EMAIL PR

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

2003-08-14 Thread Dan Anderson
Doesn't this have to be precompiled in? -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2003-08-14 Thread Dan Anderson
work. Like when I search for something on Ebay. Could this be because of cookies? -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP vs ASP.NET "formal opinions" request

2003-08-14 Thread Dan Anderson
I hate to be the one to break it to you but in the real world if a client or the boss says "program in ASP .NET" you program in ASP.NET because, well, that's where the money is. That doesn't mean there isn't room for using better products, but sometimes you don'

[PHP] Re: module to display e-mail from source

2003-08-14 Thread Dan Phiffer
t http://us2.php.net/manual/en/ref.imap.php I've just begun to mess with those functions and have been impressed with the amount of functionality that's available. Hope that helps, -Dan "Juan Nin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Does anyo

[PHP] need help with cookies

2003-08-18 Thread Dan Anderson
More importantly, if I have cookies from domain x which provides y cookies and go to a second web page from domain x which provides z cookies, if I go to another web page on domain x should I concatanate the y and z cookies, or just send the last z cookies recieved? Thanks in advance, Dan And

RE: [PHP] READ RECEIPTS [WAS: $GLOBAL question]

2003-08-18 Thread Dan Anderson
iepts that even though I wish they didn't exist I can't see complaining to a mailing list about them. -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] READ RECEIPTS [WAS: $GLOBAL question]

2003-08-18 Thread Dan Anderson
/ read receipts to be replied to that doesn't work. :) However if that is this guys case he should create a second account for mailing lists only and block read receipts till his hearts content. -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pop3 functions

2003-08-18 Thread Dan Anderson
ld be argued if human brains could support programming in assembly we would have much more efficient programs. :-) -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Losing a session?

2003-08-19 Thread Dan Anderson
I would speculate that because what you are doing involves cookies at coke.com $_SESSION['name'] == X and at pepsi.com $_SESSION['name'] == NotX. On the other hand if on foo.coke.com you set $_SESSION['name'] I'm not sure if it will be written

Re: [PHP] "back" works in opera but not in internet explorer

2003-08-19 Thread Dan Anderson
e cached version. IE just doesn't show it. I usually get around this with a "go back" button on the web page that submits to the previous web page with all the data. Something of a pain to code though. -Dan -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] in the middle of shift and pop

2003-08-19 Thread Dan Anderson
Well, if you knew (for instance) that $A[2] should be removed then you could do something like: $value) { if ($key < 2) { $B[$key] = $value; } elseif ($key > 2) { $B[($key - 1)] = $value; } } ?> Modify the above code as needed... -Dan On Tue, 2003-08-19 at 22:25, Decapode A

Re: [PHP] in the middle of shift and pop

2003-08-19 Thread Dan Anderson
If you unset an array that isn't associative, will that mean there will be a gap in the numbers? Or will PHP realize "OK I need to change the numbers indexing the other elements"? -Dan On Tue, 2003-08-19 at 22:27, andu wrote: > On Wed, 20 Aug 2003 00:25:32 +0200 >

Re: [PHP] calling a user defined java class method .....

2003-08-20 Thread Dan Anderson
f/ safemode isn't enabled. You can also spit out HTML with tags no problem. I suppose it depends on what you are trying to do... -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] This is getting rediculus

2003-08-20 Thread Dan Anderson
Just throw up a filter deleting messages and threads from anybody you don't like. This can include obnoxious users, or mailer daemons (gets rid of all the worm garbage). -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] This is getting rediculus

2003-08-20 Thread Dan Anderson
e to several lists and each one appears to be affected. -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
ay the only emails I get are people yelling at the people who bounced. :-) -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
> Second, it would be better if the list owners would do something about > it. Sure, I absolutely agree with you. But there are a lot of lists /not/ doing anything about it. So whatever. Don't spend a half hour bitching about the spam -- spend 5 minutes blocking it and be done wit

RE: [PHP] This is getting ridiculous

2003-08-20 Thread Dan Anderson
stuff. It also uses the addresses in teh address book to spam -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
ething.php" and use lots of require_once() statements. -Dan On Wed, 2003-08-20 at 21:59, Chris W. Parker wrote: > Hi people. > > I'm working on a large application right now (complete ecom store) and > I'd like to get some feedback on something. > > Each product th

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
ts makes creating and maintaining very large scripts easier. -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] functions/methods and what they should return

2003-08-20 Thread Dan Anderson
and that can be a lot harder then just /doing it/. Plus, on a quick script it may become silly to break down things into components unless you plan on expanding on the script at some point in the future... -Dan On Wed, 2003-08-20 at 22:31, Chris W. Parker wrote: > Dan and Ray, > > Th

RE: [PHP] anyone have any idea as to how to display a message after a page has started loading??

2003-08-22 Thread Dan Joseph
ve any ideas > on this?? BTW: at the time I am trying to display a message I have > already started output to the browser. Try looking up the flush() function on php.net. That _might_ do what you want. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubs

[PHP] Shortcuts/aliases/sym-links?

2003-08-22 Thread Dan Phiffer
s sort of thing? Or maybe something built into the core language that I'm not aware of? Thanks for any pointers, -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Content of Variable ist html code

2003-08-24 Thread Dan Anderson
n so many bytes (system dependent) so you would have to have code to split up and put back together big web pages. -Dan On Sun, 2003-08-24 at 11:55, Matthias Wulkow wrote: > Hi php-general, > > I'm thinking of how I could store the content of a String-variable a) in a > Variable t

Re: [PHP] Using PHP on an .html file

2003-08-24 Thread Dan Anderson
ecause some supersede others or something like that. So look up how to allow it only on that directory using the main config files. (Not sure if that's possible) -Dan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] FW: muliple form array values

2003-03-17 Thread Dan Rossi
this is the second time , i am getting an auto reply from this guy , how do i stop it ?, i am asking a question ! -Original Message- From: Boaz Yahav [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 6:54 PM To: daniel Subject: RE: muliple form array values This looks like a great e

Re: [PHP] remove ' from string

2003-03-19 Thread Dan Hardiker
> Any functions to remove'from a longstring? et voila! Simple huh ;) For more info, check out: http://www.php.net/str_replace -- Dan Hardiker [EMAIL PROTECTED] ADAM Software & Systems Engineer First Creative -- PHP General Mailing List (http://www.php.net/) To unsubs

RE: [PHP] To use PEAR::DB or the PHP database functions

2003-03-20 Thread Dan Rossi
i have been using the pear db for a long time , although , portability =slower abstraction , aparantly the DB is not continuing, and MDB is its predecessor, anyway i've had a bit of trouble getting the MDB to work , in fact i got DB to work pretty much straight away thanks to thoms howto page, MDB

RE: [PHP] PHP Devel Environments???

2003-03-20 Thread Dan Rossi
The boss wants to lose the dependancy on the 2 "programmers" (myself and another person) for every little piece of PHP code. does that mean your job ? why look into it for them dont do it man ! -Original Message- From: Henrik Hudson [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003

[PHP] RE: templating question

2003-03-20 Thread Dan Rossi
i would like to know what good ones out there, fast template uses ereg and is slow , itx screws with the source layout and the output looks shit , smarty wants control of the code , is there anything better than these guys ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] RE: templating question

2003-03-21 Thread Dan Rossi
apologies , sometimes i get lazy :D -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 7:32 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] RE: templating question On Friday 21 March 2003 15:55, Dan Rossi wrote: You have started a new thread by

[PHP] onchange, post and page refreshing

2003-03-21 Thread Dan Rossi
hi there in my form i have a function to output a number of upload form boxes , this function will post the ammount function number_upload_boxes($num_boxes){ echo 'url("action", "action=addphotos").'">'."\n"; echo 'Number of Photos To Upload:'."\n"; echo

[PHP] variales within define constants

2003-03-22 Thread Dan Rossi
hi guys i'm sure i've done this before but is it possible ? i would like it to show up like this define('CONSTANT','Hello $var'); $var = "Dan"; echo CONSTANT -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] upload files and file types

2003-03-22 Thread Dan Rossi
hi there , i was wondering on security of file uploads , i am currently using the pear uploader class , i can check for allowed file extensions , but it doesnt seem to check for file type , i can currently rename say an image to zip and it uploads , is there anyway a hacker could rename an executab

RE: [PHP] variales within define constants

2003-03-22 Thread Dan Rossi
?? why would i not try it before posting heh :O -Original Message- From: Daniel Diehl [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 12:23 AM To: 'Dan Rossi'; 'Php-General' Subject: RE: [PHP] variales within define constants Just try it :) > -Origi

RE: [PHP] variales within define constants

2003-03-22 Thread Dan Rossi
new class; would it work if it switch it ? include("class.php"); $class = new class; include("defines.php"); the variable is set within the class , its an internal variable ie $this->_variable; -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: S

RE: [PHP] variales within define constants

2003-03-22 Thread Dan Rossi
able to go Hello $username or Hello $this->username for example , is there any way to do this ? -Original Message- From: Dan Rossi [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 9:09 AM To: Jim Lucas; Daniel Diehl; 'Php-General' Subject: RE: [PHP] variales within def

[PHP] more issues with variales within strings

2003-03-22 Thread Dan Rossi
hi guys , i am sure this worked on an earlier version of php, 'NOT_ALLOWED_EXTENSION' => "Not Allowed File Extension, the following filetypes are allowed : ($this->type)\n", this is inside an array then i used to do $this->extract_filetypes($this->imgtypes); $this->error_codes[NOT_ALLOWED_EXTEN

RE: [PHP] more issues with variales within strings

2003-03-22 Thread Dan Rossi
never mind this is the only way i can probaly do this 'NOT_ALLOWED_EXTENSION' => "Not Allowed File Extension, the following filetypes are allowed : (".$_SESSION['ext_type'].") -Original Message- From: Dan Rossi [mailto:[EMAIL PROTECTED] Sent:

[PHP] htaccess writable by httpd

2003-03-23 Thread Dan Rossi
is this a dangerous feature ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] automatic newsletter

2003-03-23 Thread Dan Rossi
cron job it , and execute the script using the command line php -Original Message- From: fr r [mailto:[EMAIL PROTECTED] Sent: Sunday, March 23, 2003 9:36 PM To: [EMAIL PROTECTED] Subject: [PHP] automatic newsletter hi guys..i wanna make an automatic newsleter; meanings there is no page

RE: [PHP] who is on the page?

2003-03-23 Thread Dan Rossi
how bout add a last logged in field , and then do a check where the last logged in field is NOW() etc .. -Original Message- From: Oliver Witt [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 6:24 AM To: [EMAIL PROTECTED] Subject: [PHP] who is on the page? Hi everybody, I've been lo

RE: [PHP] who is on the page?

2003-03-23 Thread Dan Rossi
oh silly me you might need also an on/off flag , but need a way to determine when they close the connection -Original Message- From: Oliver Witt [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 6:24 AM To: [EMAIL PROTECTED] Subject: [PHP] who is on the page? Hi everybody, I've been

RE: [PHP] File uploads...

2003-03-24 Thread Dan Rossi
u etetr reference them with $_FILES['photonew']['tmp_name'] or do a print_r($_FILES); and it'll tell u info in the upload -Original Message- From: Al [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 7:14 AM To: [EMAIL PROTECTED] Subject: [PHP] File uploads... Trying to do what sh

RE: [PHP] Grabbing image information from an html string

2003-03-25 Thread Dan Rossi
if (preg_match('/(href|HREF)="?(\S+\.(jpg|png))">?/',$line, $matches)){ $filename[] = $matches[2]; } -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 7:07 AM To: Php-General (E-mail) Subject: [PHP] Grabbing image information from an ht

[PHP] best way to throw erorrs within a class

2003-03-26 Thread Dan Rossi
hi guys i have been trying to work out the best way to trigger exception style error handling within a class and return it ,i am currently storing the error code into a session variable, exiting, and doing a header location to the previous page where i was submitting from and output the error code

RE: [PHP] getimagesize

2003-03-26 Thread Dan Rossi
@getimagesize ? -Original Message- From: Diana Castillo [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 5:04 AM To: [EMAIL PROTECTED] Subject: [PHP] getimagesize anyway to not get an error when doing getimagesize if you get this response? HTTP request failed! HTTP/1.1 404 Not Fo

RE: [PHP] Uploading Files Via PHP

2003-03-27 Thread Dan Rossi
did u even read it ? chmod 777 + owned by httpd -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 9:40 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Uploading Files Via PHP On Thursday 27 March 2003 18:25, Marek Kilimajer wrote: > not necesserily

RE: [PHP] Re: Internet Explorer toolbar

2003-03-27 Thread Dan Rossi
??? who cares i gave a solution, there is no other #**#% way -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 3:39 PM To: daniel Cc: Peter Houchin; Dan; php-general Subject: Re: [PHP] Re: Internet Explorer toolbar Yes, but that has nothing do

RE: [PHP] Re: Internet Explorer toolbar

2003-03-28 Thread Dan Rossi
heh sorry excuse my arrogance , of then , find me a solution that doesnt require echoing javascript ? -Original Message- From: Philip J. Newman [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 6:49 PM To: Dan Rossi; Leif K-Brooks Cc: Peter Houchin; Dan; php-general Subject: Re: [PHP

RE: [PHP] Re: Internet Explorer toolbar

2003-03-28 Thread Dan Rossi
use my example , there is no possible way , i did once see a javascript() function but obviously thats not there -Original Message- From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 7:41 PM To: [EMAIL PROTECTED] Cc: 'Php-General' Subject: RE: [PHP] Re: Inter

RE: [PHP] XML+XSLT or Smarty again??

2003-03-28 Thread Dan Rossi
hmm i usually output the xml to an arg string to transform through sablot, i dont know much about smarty although, while looking for a templating system to replace fast template , i was hoping smarty could have a similar structure and be quicker at the same time , but it seems to want control of th

RE: [PHP] upload question

2003-03-30 Thread Dan Rossi
err its "open with" actually -Original Message- From: Hugh Danaher [mailto:[EMAIL PROTECTED] Sent: Sunday, March 30, 2003 2:04 PM To: Anthony Ritter Cc: [EMAIL PROTECTED] Subject: Re: [PHP] upload question Sounds like a Windows configuration issue and not a php issue. There's an 'open u

RE: [PHP] Re: XML+XSLT or Smarty again??

2003-03-31 Thread Dan Rossi
wow thanks ! i've been looking for some example like this for a very long time , does it mean that the templates becomes similar to the template block ? -Original Message- From: Pete James [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 2:08 AM To: [EMAIL PROTECTED] Subject: Re: [P

[PHP] problems with curl + exec

2003-03-31 Thread Dan Rossi
hi guys , this is a wierd problem , for some reason wget is fine to return stderr to stdoutput , i'll get an exact error in key 4 , ie OK or HTTP 404 , but with curl it is not returning the exact errorode or outputting an error ? here are my instructions although for a 404 instead of 22 i am gettin

RE: [PHP] problems with curl + exec

2003-03-31 Thread Dan Rossi
sorry worked it out i had stderr in the escape string -Original Message- From: Dan Rossi [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 7:39 AM To: Php-General Subject: [PHP] problems with curl + exec hi guys , this is a wierd problem , for some reason wget is fine to return

RE: [PHP] 1. april

2003-04-01 Thread Dan Rossi
http://electroteque.dyndns.org:1023/phpinfo.php ?? -Original Message- From: Thomas Richter [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 8:57 PM To: [EMAIL PROTECTED] Subject: [PHP] 1. april check the output of phpinfo(). I prefer php version 4.2.3... thomas -- PHP General

[PHP] PHPSESSID Handling...

2003-04-01 Thread Dan Joseph
is a valid number, and if it is not, exit the application? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Auto escalation

2003-04-01 Thread Dan Joseph
er so many seconds. 3. When some levels are hit, and you want more features, just simply code them. I had it e-mail the Ops Manager when it hit level 4 (48 hours of no touches). Lemme know if that doesn't help. -Dan Joseph -Original Message- From: John W. Holmes [mai

[PHP] trigger error and set error handling in an object

2003-04-02 Thread Dan Rossi
hi guys i am having an issue getting a set error handler to get a function within a class, i am also having problems trying to trigger the error, i dont want fatals or the error handler wont catch it anyway , but user or message picks up annoying messages like undefined index on variable , how can

[PHP] use of sessions compared to global scope

2003-04-02 Thread Dan Rossi
hi guys , as per my previous email i am trying to sort out a similar error handling as c or java exception, although in the error handler i am sending an error code to it and then return to the previous page with the error on it , the only way i can do this is to store the code in a session variabl

RE: [PHP] uploading entire directory, with or without compression ...

2003-04-03 Thread Dan Rossi
i have looked into this , and the browser is only limited to single file uploads , but yes a a java applet is prob the best options, i am considering on learning java as it is similar to php OO or maybe the other way round, it looks familiar so maye i can get my hed around it :D, maye there is an o

RE: [PHP] excel 2 csv 2 mysql

2003-04-03 Thread Dan Rossi
yes i hope it comes handy , i'm stoked i found it, the import works perfect i simply upload the xls file str8 into mysql :D or u can play around with the csv data using getcsv() -Original Message- From: jon roig [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 4:13 AM To: [EMAIL PROT

[PHP] mimetpye of remote file

2003-04-04 Thread Dan Rossi
hi guys apart for getimagesize for images is there a way to get mimetypes for other files ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] uploading entire directory, with or without compression ...

2003-04-04 Thread Dan Rossi
oo bugger is there an open source version ? -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 8:05 PM To: David T-G Cc: PHP General list; Awlad Hussain Subject: Re: [PHP] uploading entire directory, with or without compression ... David T-G

RE: [PHP] uploading entire directory, with or without compression ...

2003-04-04 Thread Dan Rossi
hmm what do u mean y signed ? applets simply load dont they ? also maye activex is the way to go ? -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 8:17 PM To: Dan Rossi Cc: PHP General list Subject: Re: [PHP] uploading entire directory, with

[PHP] php5 writeup

2003-04-04 Thread Dan Rossi
just found this http://talks.php.net/show.php/php5intro/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   8   9   10   >