[PHP] IP Address

2001-08-07 Thread Joseph Bannon
What is the php code to get a visitor's IP address? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] IP Address

2001-08-07 Thread Joseph Bannon
Just because you're having a bad day doesn't mean I should. Can you just tell me what it is? I don't have those posts. J -Original Message- On Tue, Aug 07, 2001 at 08:11:52AM -0500, Joseph Bannon wrote: > What is the php code to get a visitor's IP address? >

RE: [PHP] `pwd` - what does this mean?

2001-08-14 Thread Joseph Blythe
how about typing "man pwd" on a unix box? -Original Message- From: Scott Mebberson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 15 August 2001 4:08 PM To: [EMAIL PROTECTED] Subject: [PHP] `pwd` - what does this mean? Hi Guys, I actually know what it means. Well, I think it means the cur

RE: [PHP] Re: `pwd` - what does this mean?

2001-08-14 Thread Joseph Blythe
actually says: "pwd - print name of current/working directory" in the man page (c: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 15 August 2001 4:18 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: `pwd` - what does this mean? pass working directo

[PHP] FW: upgrading PHP

2001-08-23 Thread Joseph Bannon
Has anyone come up with an upgrade proceedure for upgrading PHP to a higher version? Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] File Upload and NT...

2001-08-24 Thread Joseph Koenig
Sorry, I know file uploads are asked about all the time... I'm having an odd problem on a WinNT system. When I try to do my upload, I test the file to see the type of it: $image_info = GetImageSize($the_image); However, that line gives me: Warning: getimagesize: Unable to open '/Joe1/Desktop%20

Re: [PHP] File Upload and NT...

2001-08-24 Thread Joseph Koenig
Actually, The warning is coming from when I try and upload the file from the desktop of my Mac. It's supposed to get uploaded into: C:\WINNT\PHP\UPLOADTEMP. I checked phpinfo() and that's where it says the upload_tmp_dir is. By the way, I was using the getimagesize to check if the file is a .gif,

[PHP] PHP mysql admin?

2001-08-27 Thread Joseph Bannon
Are there any free PHP mysql database admin programs out there? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] PHP mysql admin?

2001-08-27 Thread Joseph Bannon
Thanks. I'll give it a try. Joseph -Original Message- Try phpMyAdmin http://phpwizard.net/ - Original Message - > Are there any free PHP mysql database admin programs out there? -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] How do I get the file size of a file on my server?

2001-08-28 Thread Joseph Bannon
How do I get the file size of a file on my server using PHP? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] remote hosts

2001-08-28 Thread Joseph Bannon
images be viewed on my website? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] install error

2001-08-29 Thread Joseph Bannon
What does this mean? make[1]: Entering directory `/home/php-4.0.6' /home/php-4.0.6/build/shtool mkdir -p "/usr/lib/apache" && /usr/sbin/apxs -S LIBEXECDIR="/usr/lib/apache" -i -a -n php4 libs/libphp4.so apxs:Warning: /usr/bin/httpd not found or not executable apxs:Warning: Continuing anyway...

[PHP] fgets

2001-08-29 Thread Joseph Bannon
I want to use fgets to get an image off the server and then print it. Kinda like if you call the script picture.php, an image will appear. How do I do this? I'm trying to create a graphical counter with php. Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
What exactly does fpassthru do? Does it download it to my server and then shoot it to the browser?? Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
w I'm not saving their photos to my server, I just want to make sure I'm not killing my alotted bandwith. Does 'fpassthru' do this? If so, is there another solution? Thanks for helping me with this. Joseph -Original Message- On Thu, 30 Aug 2001, Joseph Bannon wrote: &

RE: [PHP] file upload size, before upload complete

2001-08-30 Thread Joseph Bannon
Yes, I use to do this with my site. # The original name of the file on the client machine. $filename = $HTTP_POST_FILES['file']['name']; # The mime type of the file, if the browser provided this information. An example would be "image/gif". $filetype = $HTTP_POST_FILES['file']['type']; # The

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
Dang it! -lol Any ideas how to get around my problem? J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] fpassthru (was: fgets)

2001-08-30 Thread Joseph Bannon
What if I pass something in the header? Will that work? Joseph -Original Message- From: Christopher William Wesley [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 1:05 PM To: PHP (E-mail) Subject: RE: [PHP] fpassthru (was: fgets) On Thu, 30 Aug 2001, Joseph Bannon wrote

[PHP] array search

2001-08-31 Thread Joseph Bannon
the array to see if that person is there. Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] array search

2001-08-31 Thread Joseph Bannon
What about going the other way? Say I have a sentence... "Hi, my name is Bob." ...and I want to search the sentence for one of the values (people) in the array... $people = array("Jim","John","JP","Bob"); Can this be done? Thanks, Joseph

[PHP] returns (functions)

2001-09-05 Thread Joseph Bannon
I have a foreach loop running in a function. During the foreach loop, if a variable matches another variable, it does "return $variable". My question is this: does the function automatically stop running when the variable is returned? J -- PHP General Mailing List (http://www.ph

[PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
TimeFrame=D&asxCode=ASX I tried a quick test using the filesystem functions with no success, I was sort of hoping for a 'Yes' / 'No" answer maybe if 'Yes' just a quick explanation. Any help would be much much appreciated. Regards, Joseph Blythe Web Developmen

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
/index.php on line 9 Trust them to make it as hard as possible using Java Slowdown Pages :-)) Will keep trying. Regards, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
u","r";); Thanks again, Joseph -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 September 2001 3:18 PM To: Joseph Blythe Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Grabbing dynamic pages This script worked fine for me here: http://www.asx.com.au

RE: [PHP] Grabbing dynamic pages

2001-09-06 Thread Joseph Blythe
This is true this is exactly why i try and find a solution here first (with PHP), my bosses attitude was to hire java programmers i said 'why?'. I also noticed getss which strips stuff on the read which is kinda cool too (c: Joseph -Original Message- From: David Robley [mai

RE: [PHP] Grabbing dynamic pages

2001-09-07 Thread Joseph Blythe
parse the html (oh my god). Regards Joseph -Original Message- From: Donny Yap [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 September 2001 4:55 PM To: Joseph Blythe Subject: RE: [PHP] Grabbing dynamic pages Yes, This shouldn't be too hard to do; work out what type of data it is you&#

[PHP] GD

2001-09-07 Thread Joseph Bannon
I just installed PHP 4.0.6. 1) Do I have to down load GD (graphics library) and install it sperately or is it in 4.0.6 already? 2) Do I have to run anything special during configuration? 3) Do I have to completely re-install PHP and Apache? Thanks, Joseph -- PHP General Mailing List (http

RE: [PHP] GD

2001-09-07 Thread Joseph Bannon
What is FreeType? J -Original Message- From: Sebastian Wenleder [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 10:36 AM To: Joseph Bannon; PHP (E-mail) Subject: Re: [PHP] GD At 10:06 Uhr -0500 07.09.2001, Joseph Bannon wrote: >I just installed PHP 4.0.6. > >1)

[PHP] ImageGIF

2001-09-07 Thread Joseph Bannon
ImageGif: No GIF support in this PHP build in counter.php I get this error message when I try to run this code... Header("Content-Type: image/gif"); $im = ImageCreate(500, 75); $red = ImageColorAllocate($im, 255, 0, 0); ImageFill($im, 100, 100, $red); ImageGIF($im); I installed GD. When I us

RE: [PHP] ImageGIF

2001-09-07 Thread Joseph Bannon
No, its not listed. What do I need to do? J -Original Message- phpinfo() also lists which image types your GD supports. Does it list GIF? Later versions do not have GIF support. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

[PHP] randomly picking a variable from an array

2001-09-07 Thread Joseph Bannon
How do you randomly picking a variable from an array with PHP? Thanks, Joseph PS. Thanks to those who helped me with GD. If you go to my site, you'll see the new counter I created at the top of the page. http://www.collegesucks.com -- PHP General Mailing List

[PHP] GD picture quality

2001-09-07 Thread Joseph Bannon
Take a look at this picture... http://www.sayimhot.com/images/mycurrentscore.jpg ... now take a look at it while text is added to it... http://www.sayimhot.com/myscore.php What happens to the picture quality? How can it be improved? (code below) Thanks, Joseph

[PHP] GD with GIF support

2001-09-10 Thread Joseph Bannon
Does anyone have GD with GIF support? Can you send it to me? Thanks Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] PHP + FreeBSD + ODBC --> Progress Database

2001-09-13 Thread Joseph Koenig
This is probably a really stupid question. I've been reading info on phpbuilder and at iodbc.org and I must just be missing something. What I want to do is connect to a Progress Database on WinNT from a FreeBSD 4.3 server with PHP 4.0.6. Before I compiled PHP, I was under the impression I needed i

[PHP] PHP + NT + Weird line break??

2001-09-18 Thread Joseph Koenig
On NT, I have recently run into this problem. However, this is only as of today. When using include(); at the top of a page: HTML... There is a line break before my page most of the time, but not always. Removing the include file and copy-pasting it's contents into the top of the HTML file gets

RE: [PHP] database on CD

2001-09-20 Thread Joseph Bannon
It should be possible, especially if you use Java. But, telling MySQL where the database is located is the trick. Joseph CollegeSucks.com - See PHP in ACTION! -Original Message- Ok, Is this possible and how? I would like to put a mysql database on CD (or something like it). I then

FW: [PHP] PHP 4.0.6/Apache 1.3.20/MySql 3.24.xx install

2001-09-20 Thread Joseph Bannon
Do you have enough space in the partition? Joseph CollegeSucks.com - See PHP in ACTION! -Original Message- (I'm sorry if this is not getting posted in the correct place, but I'm not sure who/where to turn to...) I'm attempting to upgrade my SuSE Linux 7.2 (2.4.x) se

RE: [PHP] Just for fun:

2001-09-20 Thread Joseph Blythe
ll the functions nice and compact the user functions usually just combine a number of the helper functions together, don't know if this the best way but works for me (c: Regards, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Finding a File

2001-09-21 Thread Joseph Koenig
Hello everyone -- I'm just a little bit stumped on this. I've got some files that are available for user download, however, the files are in different directories. The file names are based on the item number which is available. For example, item number "AS1000-01" is in directory "AS" and is named

Re: [PHP] Finding a File

2001-09-21 Thread Joseph Koenig
ample, pull "AS" out of "ASx" and "MAS" out of "MASx"? I looked through the string functions and didn't really see anything to promising. Something like is_letter() would be cool :) Thanks, Joe Joseph Koenig wrote: > > Hello everyone -- I&#x

[PHP] re: Zend Cache & cache_gui

2001-09-24 Thread Joseph Blythe
I was wondering if anyone else has had simular problems, or could point me somewhere to find out what is going on? Any help would be much appreciated. Regards, Joseph. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

[PHP] cookies

2001-09-25 Thread Joseph Bannon
When I set a cookie like below, what does the "300" represend in time? Seconds? setcookie ("referred", "yes", 300, "", ".advparadigm.com",0); Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-

RE: [PHP] Re: cookies

2001-09-25 Thread Joseph Bannon
And this is where I say kma thanks. J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Re: Zend Cache & cache_gui

2001-09-25 Thread Joseph Blythe
unfortunatly ZendLaunchPad installed php-4.0.4pl1 with Zend Optimizer 1.0.0 built in static, unless I can figure out how to get LaunchPad working with 4.0.6, will have to scrap it and go back to manually setting it all up. Thanks, Joseph -Original Message- From: John Lim [mailto:[EMAIL

[PHP] handling errors

2001-09-26 Thread Joseph Bannon
http://www.yahoo.com' for reading. line 28 Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] updating a database (mysql)

2001-09-26 Thread Joseph Bannon
When I update my mysql database, is there a way with PHP to know what or if any records where updated? Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e

[PHP] host type if you use --no-verify whattha?

2001-09-26 Thread Joseph Blythe
ify didn't tell it to do that :) hope someone can help, as i'm stummped for now. also any suggestions on the configuration options would also appreciated. regards joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] PHP 4.0.6 on NT (IIS 4.0) Can't replace uploaded file

2001-10-01 Thread Joseph Koenig
I've got a script on an NT (IIS 4.0) server that uploads a file. When the user attempts to replace the uploaded file with a new one via the form, the script is generating errors. Warning: Unable to create 'D:/public/HJ/www.h-jenterprises.com/test/pics/catalog/104_2.gif': Permission denied in D:\p

Re: [PHP] PHP 4.0.6 on NT (IIS 4.0) Can't replace uploaded file

2001-10-01 Thread Joseph Koenig
Sounds like their upload script isn't setting the correct file permissions > when creating the file. Directory permissions don't seem to be a problem > for you. > > -Joe2 > > > -Original Message- > > From: Joseph Koenig [mailto:[EMAIL PROTECTED]] > >

RE: [PHP] Rebuild PHP

2001-10-02 Thread Joseph Bannon
Yes. I've had to do this a few times to upgrade to 4.0.6. It is a pain, but the only way I know of. Joseph iWebsiteSoftware.com -Original Message- If I rebuild PHP, do I need to rebuild my apache??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP] ad rotation program

2001-10-04 Thread Joseph Bannon
Has anyone on this list developed an ad rotation program in PHP? Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP] Invisible watermarking / GD2

2004-07-31 Thread Joseph Hill
Hi I use GD for stamping images with a visible watermark - in this case, a text string and a tracking number appended to the bottom of each image. However, I'd like to embed tracking information (I sometimes see my pics crop up on mailing lists... And they're the ones I see copied!) into the pict

[PHP] SQL Functions

2004-08-10 Thread Dan Joseph
g that holds all the rows, however, I cannot see a decent way of doing this. I've played with putting it into a new array, but I can't decide if that's the best way to do it. Wondering if I could get some opinions on how you all would handle this? -Dan Joseph

RE: [PHP] SQL Functions

2004-08-10 Thread Dan Joseph
eturn $array; } Then I am doing a foreach on the returned $array: foreach ( $jack as $data ) { echo $data['id']; } Seems to work ok. Thanks for the information. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

RE: [PHP] SQL Functions

2004-08-10 Thread Dan Joseph
Hi, > $array = array(); > $results = mysql_query( $sql, DB::connect() ); > while($data = mysql_fetch_array($result)) > { $array[] = $data; } > > return $array; > > No need to loop through $data. Ahh, thanks for that tip. That's much cleaner. -Dan Joseph

RE: [PHP] SQL Functions

2004-08-10 Thread Dan Joseph
Hi, > Would there be any speed/performance issuse with using something like... > > array_push ( $array, $data ); > > vs. > > $array[] = $data; They seem to react the same in my test script. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To uns

RE: [PHP] SQL Functions

2004-08-10 Thread Dan Joseph
p://www.phpclasses.org/browse/package/20.html I'm building a class for use with our PHP applications. Packages like what you've linked me to are nice, but we need a little flexibility here, so we're writing a few methods of our own. -Dan Joseph -- PHP General Mailing List (http

RE: [PHP] SQL Functions

2004-08-10 Thread Dan Joseph
of these classes is inflexible. Sorry, in flexibility I mean I don't have to rely on installing any of these libraries. Something I have no option to do without going thru a lot of red tape. Its just not worth the hassle, and this method works ok for what we need. Its not a co

[PHP] Object Fatal Error?

2004-08-18 Thread Dan Joseph
} $data = mysql_fetch_array( $results ); return $data; } } -Dan Joseph

RE: [PHP] [OFF] Double charges to credit cards

2004-08-20 Thread Dan Joseph
er the impression that Amazon and others didn't charge (or authorize) your card until the time of shipping, and that if the card was declined, they contact you then. That's how it seems to me, but I don't really know. Hope that helps. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Exporting Dbase to CSV

2004-08-26 Thread Dan Joseph
an output to a table, I can output to screen in CSV format but that > just > means massing about with copy and paste. > > Has anyone got any suggestions...? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Oficial Certification

2004-08-27 Thread Dan Joseph
Hmm... there are no practice exams posted... > I just saw that: http://www.phparch.com/cert/ -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Oficial Certification

2004-08-27 Thread Dan Joseph
ir internal staff, meaning, they send them out for training, they get certified, and the employer sees the training was completed successfully. Its good that there's a PHP Cert, PHP/Zend should endorse one. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

RE: [PHP] PHP Oficial Certification

2004-08-31 Thread Dan Joseph
difficult to > dispel, and it shows how powerful perception can be. Myth it is for sure. We've passed 7 security audits in a row here. All PHP systems. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Html pages generated with php can't be viewed as source in IE

2004-09-01 Thread Dan Joseph
Yeah, IE bugs... Clear your cache, if that doesn't work, go into the file system, and manually delete the cache files. That'll fix it, for a while. -Dan Joseph > -Original Message- > From: Brent Clements [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 01

RE: [PHP] Html pages generated with php can't be viewed as source in IE

2004-09-01 Thread Dan Joseph
LOL... Formatting my drive didn't help, it came back eventually. :) This has been an issue since IE 4.0. Go Microsoft! -Dan Joseph > -Original Message- > From: Pablo Rivas [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 01, 2004 10:04 AM > To: [EMAIL PROTECT

RE: [PHP] MSSQL, PHP and Linux

2004-09-01 Thread Dan Joseph
Hmm, I do see the MS SQL listed under DBX, but I don't see the --with=mssql in the configure line. Only psql and mysql. Does that need to be in there also? -Dan Joseph > -Original Message- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 01

RE: [PHP] Session understanding

2004-09-02 Thread Dan Joseph
oblem ? Are they closing all the browser windows before opening the new one? If not, the session will be held onto until it expires from inactivity. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Regex for Validating URL

2004-09-02 Thread Dan Joseph
would admit that harshness runs rampid on this list, there are times that maybe it is in order. If that time is now or not is a moot point at the moment. Let's get back to peaceful exchange of PHP pleasantries. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubsc

RE: [PHP] Dynamic Class Methods

2004-09-07 Thread Dan Joseph
> Fatal error: Call to undefined function: b() in > /home/tech/web/testboard/implements.php on line 21 > $a->b(); You don't have a function b() defined in class cls_a. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

FW: [PHP] Dynamic Class Methods

2004-09-07 Thread Dan Joseph
I am not nearly as stupid as you are. You're the one who can't get it to work, not me. -Dan Joseph -Original Message- From: Mathieu Dumoulin [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 07, 2004 10:56 AM To: 'Dan Joseph' Subject: RE: [PHP] Dynamic Class Metho

RE: [PHP] What's faster? MySQL Queries or PHP Loops?

2004-09-08 Thread Dan Joseph
ge? Just want to clarify. If that's the case, don't worry about the array, just hit the SQL server each time. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Users of RDBMS

2004-09-08 Thread Dan Joseph
> -Original Message- > From: Jay Blanchard [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 08, 2004 3:37 PM > To: Pahlevanzadeh Mohsen; [EMAIL PROTECTED] > Subject: RE: [PHP] Users of RDBMS > > [snip] > I need to create user for MySQL. > Please guide me.. > [/snip] > > I will

RE: [PHP] Users of RDBMS

2004-09-08 Thread Dan Joseph
Hi, > PHP != MySQL > > http://dev.mysql.com/doc/mysql/en/index.html Shouldn't that be: if ( PHP != MySQL ) { Header( "Location: http://dev.mysql.com/doc/mysql/en/index.html"; ); } -Dan Joseph -- PHP General Mailing

RE: [PHP] PHP: Supported OS

2004-09-09 Thread Dan Joseph
nd Linux (as far as server...). If you are wondering what browsers on which OSes will display PHP pages, all of them, PHP is server side. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: MSSQL, PHP and Linux

2004-09-14 Thread Dan Joseph
that hard. Pass him the url www.linuxquestions.com, they can help. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Session time out

2004-09-14 Thread Dan Joseph
Hi, Depending on the time out time set in the php.ini, they will expire after that many minutes of inactivity, or when the browser is closed. -Dan Joseph -Original Message- How do sessions 'time out'? Especially if using and SID in the query string (not a good id

[PHP] Security - Semi OT

2004-09-14 Thread Dan Joseph
outsider check thru it. I'm basically looking for some quotes so I can present them to my friend. Let me know. -Dan Joseph

RE: [PHP] iguanahost - anyone else being plagued?

2004-09-15 Thread Dan Joseph
I've done the same thing. Most likely its an auto-response msg from them after we reply to anything on this list. I can't read the language its in personally. I wrote abuse several times, I get the same msg back. -Dan Joseph > -Original Message- > From: Nick Wilso

RE: [PHP] Coding Blues - Parse Error

2004-09-15 Thread Dan Joseph
Hi, You don't have a ; at the end of the line. You have $this->db = $db and you should have $db;. -Dan Joseph -Original Message- From: Yusuf [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 11:19 PM To: [EMAIL PROTECTED] Subject: [PHP] Coding Blues - Par

RE: [PHP] PHP accelerators

2004-09-16 Thread Dan Joseph
Hi, > Besides Zend, has anyone successfully used and know of any PHP > accelerators > that work with PHP 5.x? There are others? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP accelerators

2004-09-16 Thread Dan Joseph
Hi, > http://www.php-accelerator.co.uk/ > > http://pecl.php.net/package-info.php?package=APC > > http://turck-mmcache.sourceforge.net/ Oh wow, I had no idea. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] List Etiquette

2004-09-20 Thread Dan Joseph
Hi, > > Happy top posting, > > Have fun driving on the wrong side of the road. Hey that can be fun! Especially in crowded downtown areas. It's a real challenge! -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] password-protecting with PHP, help plz

2004-09-21 Thread Dan Joseph
authentication, there are two methods. htaccess at the OS level (linux/unix), using Windows IIS to set a password on a directory or fiels, or you can utilize Sessions. What exactly are you trying to accomplish? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] spaces in select

2004-10-11 Thread Dan Joseph
variable out that has > been posted. It only shows the first word IE: > United. > > Is there a way to ensure that I can get all the words that the value is > set to?IE: United States of America, when the form is posted? Make sure in your lines that you're putting the quotes

Re: [PHP] config.php

2004-10-11 Thread Dan Joseph
> Is there anyway of creating a config.php file on the fly using a form. There is... however, that's kind of a broad question. What sort of config file are you trying to build? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] creating a folder in php

2004-10-12 Thread Dan Joseph
er protocol) it to you. Does it have a good debugger? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SSI and PHP

2004-10-13 Thread Dan Joseph
urse virtual(), etc. do not work because PHP is set up as CGI. > > Anyone know of any good work around tricks? I've moved to using include(), I can't use SSIs either. Is this a viable option for you? Do you maybe have some code examples we could take a look at to help you further?

Re: [PHP] intenger

2004-10-14 Thread Dan Joseph
> Please, i need output a intenger, what function can i use for this?. > Print?, echo? $i = 12; echo $i; -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] User Defined Forms

2004-10-14 Thread Dan Joseph
field. Then you'd want to make a table that would house the fields each form wants to include. A final table that would hold the name of the form, and the user who has rights to use it. This doesn't sound real difficult, but time consuming. Does that make sense? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] For how long session exist

2004-10-14 Thread Dan Joseph
ting. The inactivity John mentioned is set there. Otherwise, yes, as soon as the browser is closed. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] replacing characters in a string

2004-10-14 Thread Dan Joseph
> This should be simple but having never have done it before and at > deadline...help please. > > Need to change: > > [EMAIL PROTECTED] > > to; > > user=domain str_replace() is what you want... $var = str_replace( "@", "=", $oldvar )

RE: [PHP] Replace or regex?

2004-09-30 Thread Dan Joseph
$line_out; fclose ($file); } Hope that helps.. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Zend PHP Certification test

2004-09-30 Thread Dan Joseph
Hi, > > I'd be interested in hearing your honest feedback after you take it, > > whether privately or on this list. Hopefully ZCE becomes a respected > > acronym, unlike MCSE. :-) > > I passed. > > I thought the test was very challenging. The areas I found mo

RE: [PHP] Zend PHP Certification test

2004-09-30 Thread Dan Joseph
Hi, > You can win a free pass to take the exam by being the first to solve this > puzzle: > > http://shiflett.org/archive/55 Which part on this page is the puzzle? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Zend Optimizer not installed

2004-10-01 Thread Dan Joseph
Hi, > Does anyone know of a hosting company that will provide Zend Optimizer > v2.1.0 or later on a VIRTUAL hosting package. (preferably in the UK) www.1and1.co.uk -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Naming conventions

2004-10-01 Thread Dan Joseph
me. There is Hungarian notation that a lot of developers like to use. You could google that. -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mixing classes

2004-10-18 Thread Dan Joseph
ne have any ideas or suggestions how to solve this issue? I've > looked for a solution for some time now, to no result. What about extending the classes? Have you thought about something along those lines? -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] people/projects looking for developers...

2004-10-18 Thread Dan Joseph
ts that are intended > to be revenue generating businesses. www.itmoonlighter.com is one that I use to use. It has both companies looking to find developers for their projects, and developers looking for extra work. I'm sure there are other sites, but I can't think of 'em. -Da

Re: [PHP] Automatic Form processor

2004-10-19 Thread Dan Joseph
ormation and manipulate > it. > > IE: > > > > > > > > ... > > > > > You could use a foreach... foreach ( $_POST as $key => $value ) { if ( substr( $key, 0, 4 ) == "quest" ) echo "$value: $key\n"; } -Dan Jos

<    1   2   3   4   5   6   7   8   9   >