Re: [PHP] Variable Problem when UPGRADING...

2001-01-30 Thread Philip Olson
hi again james, btw, consider doing this : if (empty($submit)) { or if (!empty($submit)) { as it doesn't run into such problems. or use isset although i tend to almost always use empty, i LOVE empty() !!! each have their uses : http://www.php.net/manual/en/function.empty.php

Re: [PHP] PEAR?

2001-01-30 Thread Teodor Cimpoesu
Jonathan Sharp wrote: > > I came across http://pear.php.net/ So what is this? I found this in the PHP > Developers Cookbook by SAMS...Right now it only has a few documentation and > coding standards...are there more plans for this? It comes (and installs by default) in every PHP distribution fo

Re: [PHP] Variable Problem when UPGRADING...

2001-01-30 Thread Teodor Cimpoesu
James Smith wrote: > > Alright, when i was programming with PHP3, I would use > if statements like this: > > if(!$submit) { >// display form > } else { >// display signup complete > } > > to make multiple pages. Or I would do this: > > if($action == "signup") { >if(!$submit) { >

Re: [PHP] PEAR?

2001-01-30 Thread Philip Olson
Also, PEAR is online, look at (and steal) the software from cvs! It can be seen here : http://cvs.php.net/viewcvs.cgi/php4/pear/ There is a fairly recent article about PEAR DB Abstraction Layer, which is found here : http://phpbuilder.com/columns/allan20010115.php3 And you can read wh

[PHP-CVS] cvs: php4 /pear DB.php /pear/DB/tests db_parsedsn.phpt

2001-01-30 Thread Stig Bakken
ssb Tue Jan 30 00:34:56 2001 EDT Modified files: /php4/pear DB.php /php4/pear/DB/tests db_parsedsn.phpt Log: @Allow url encoding in DB usernames and passwords (Stig, PEAR) Index: php4/pear/DB.php diff -u php4/pear/DB.php:1.44 php4/pear/DB.php:1.45

RE: [PHP] Editor

2001-01-30 Thread Maxim Maletsky
EditPlus.com ($?) -Original Message- From: Christian Sakshaug [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 4:45 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Editor Try www.phpedit.com or www.ultraedit.com (30$) At 08:37 30.01.2001, you wrote: >Hi, > >I know this has been

[PHP] major help required with php3 and apache on suse 7.0 pro

2001-01-30 Thread bob
Hi, I have a webserver with over 100 domains running. I have installed suse 7.0 with the apache that came with suse. php3 and 4 are installed but are not running. I cannot restart apache because of an error, and I dont seem to find it. I want to download the new .14 apache and compile it, but I

Re: [PHP] Indexing Remote Directory

2001-01-30 Thread Richard Lynch
> I have tried $startdir = http://siteiwant.com/; with no joy > :( If the web-site in question had DirectoryBrowse on, or whatever that Apache flag is so you can see directories when there's no index.htm, and if the site in question had no index.htm, you could maybe use fopen() to do that... Ano

Re: [PHP] Zeros get striped off my db entrees.... how to stop...

2001-01-30 Thread Richard Lynch
> Ok, I have a string of bits that I combine to store as the privilege level > for our users it is 5 chars long "12345", and the default is "0" > this would be the most basic user. now, when there is a non 0 number at the > front it works and every thing is cool but, even thoug

Re: [PHP] Date Comparison Question

2001-01-30 Thread Richard Lynch
> The display works great until I get to the end of the month (like now). I > have separated the date as three rows in my dB (msg_year, msg_month and > msg_day) Don't do that. :-^ > As soon as the next month starts, then I get 4 events. > > I know exactly what's wrong, But my non-programmer limi

Re: [PHP] Apache on NT 5 =)

2001-01-30 Thread Richard Lynch
I think you want "C:/InetPub/wwwroot" to take advantage of the permissions system already in place... Forbidden probably means that InetPub itself is not readable by the user PHP runs as. Speaking of which, where's your User and Group lines? Did I miss them? Set User to that goofy iUSR_machine

Re: [PHP] unable to load dynamic librabry "c:\php/php_oracle.dll"!

2001-01-30 Thread Richard Lynch
Try changing that \ to / -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "kaab kaoutar" <[EMAIL PROTECTED]> Newsgroups: php.g

Re: [PHP] Non Expiring Cookie

2001-01-30 Thread Richard Lynch
> Is this a never expiring cookie, or a "per" session cookie? I want to > create a never expiring cooky. > > SetCookie ("MyNeverExpiringCookie", "This cookie should never expire"); That is a session cookie. It will disappear when the user closes the browser. The Cookie spec puts an upper bound

Re: [PHP] when using die(), how can i get the line number that errored?

2001-01-30 Thread Richard Lynch
function errtrapper($file, $line){ echo "In $file on line $line\n"; #current body here. } die(errtrapper(__FILE__, __LINE__)); -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://ch

Re: [PHP] Sybase port definition

2001-01-30 Thread Richard Lynch
> I have one problem our sybase uses port 5000 > how can i tel php to send all traffic on this port ? Wild Guesses: Either your "interfaces" file specifies port 5000 for the servername you are using, or you do something like: sybase_connect("servername:5000", 'username', 'password'); -- Visit

Re: [PHP] Problems with PHP mail()

2001-01-30 Thread Richard Lynch
> Anyway, I have the sendmail path set (/usr/sbin/sendmail -t -i), but > something isn't working right. Do you have quotes around that "/usr/sbin/sendmail -t -i" ? You need quotes in php.ini there, or it ignores the -t -i part cuz it's after a space. > Jan 30 01:03:52 acadia sendmail[21394]: BA

Re: [PHP] Variable Problem when UPGRADING...

2001-01-30 Thread Richard Lynch
You set error_reporting to 15 (E_ALL) instead of 7. Turn it back down to 7 or fix your scripts to use if (isset($submit)){ } -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic

Re: [PHP] Cookie with Netscape

2001-01-30 Thread Teodor Cimpoesu
"Eugene Yi (InfoSpace Inc)" wrote: > > Thank you for your feedback! I tried it but it didn't make a difference. I > printed the var right after the set and it returns null. > > setcookie("cbcookie1",$domain,0,"/","mydomain.com"); > $domain = $HTTP_COOKIE_VARS["cbcookie1

Re: [PHP] strings

2001-01-30 Thread Teodor Cimpoesu
[EMAIL PROTECTED] wrote: > > How can i make http://www.something.com/blah/blah.zip into > > blah/blah.zip > > http://www.somethingcom is a constant.. always the same thing > > how can i cut it out? > what comes to my mind right now is str_replace ('http://www.../','',$url) where $url is

Re: [PHP] Zeros get striped off my db entrees.... how to stop...

2001-01-30 Thread php3
> Ok, I have a string of bits that I combine to store as the privilege level > for our users it is 5 chars long "12345", and the default is "0" > this would be the most basic user. now, when there is a non 0 number at the > front it works and every thing is cool but, even thoug

php-general Digest 30 Jan 2001 09:50:16 -0000 Issue 482

2001-01-30 Thread php-general-digest-help
php-general Digest 30 Jan 2001 09:50:16 - Issue 482 Topics (messages 37103 through 37274): form validation :ereg () 37103 by: kaab kaoutar 37212 by: Jeff Warrington unable to load dynamic librabry "c:\php/php_oracle.dll"! 37104 by: kaab kaoutar 37266 by: Ric

RE: [PHP] mail( ) question

2001-01-30 Thread Jon Haworth
If you've copied-and-pasted that script, you might want to correct this line: Both the words "script" and "Javascript" have a T on the end of them :-) On the other hand, why don't you just use PHP for the whole thing? Get the e-mail address from a form, make the action of this form $PHP_SELF,

[PHP] disabling php ability via .htaccess

2001-01-30 Thread Martin Pitt
Hiya, Ok this is going to a little weird, however I can assure you there is a reason for it. Basically does anyone how to disabled .php scripts within directories by using a .htaccess file. Basically the whole server (Apache with Linux and PHP 4.0.4) is PHP enabled, but we don't want certain us

Re: [PHP] disabling php ability via .htaccess

2001-01-30 Thread php3
Addressed to: "Martin Pitt" <[EMAIL PROTECTED]> [EMAIL PROTECTED] ** Reply to note from "Martin Pitt" <[EMAIL PROTECTED]> Tue, 30 Jan 2001 10:05:41 - > > Hiya, > > Ok this is going to a little weird, however I can assure you there is > a reason for it. > > Basically does anyone

[PHP] using fopen, but warned "permission denied"

2001-01-30 Thread Zenith
I installed my php + apache in my linux box, with compiled the php as an apache module. any my web server is run as nobody ( by default ). I try to write some php script in my home directory, in which, I use the fopen call. However, I was warned with "fopen("tester.db","w") - Permission denied"

[PHP] W2K Pro, IIS5.0 + PHP4.4 install trouble....

2001-01-30 Thread Sebastian Stadtlich
i just installed php on IIS5.01. i placed a file phpinfo.php in the webroot --- -- whatever i try i always get the following error : Warning opening 'c:\inetpub\wwwroot\phpinfo.php' for inclusion (include_path='') in unknown on line 0 i'm not sure what this include t

RE: [PHP] Nesting 'foreach ()'

2001-01-30 Thread Tim Ward
thanks, I found that there is a bug. The curly braces don't make any difference in fact ... foreach ($fred as $fred1) foreach ($fred as $fred2) echo "$fred1 : $fred2"; is okay (but still doesn't work) although I have noticed that you seem to need to code-block single statements in if ... else co

Re: [PHP] form validation :ereg ()

2001-01-30 Thread kaab kaoutar
Hi! thanks for the answer ! but for eregi("[^a-zA-Z[:space:]ëàéêêàäïüöûâç-]",$name); it accespts also numbers hen i give kaab1 as input it accept it ? strange ?! by the way how can i add the fact that the name should not start with space ? thanks a lot ! >From: "Jeff Warrington" <[EMAIL PROTEC

RE: [PHP] when using die(), how can i get the line number that errored?

2001-01-30 Thread Neil Kimber
Rather than use die() why not use trigger_error() and have an error_handler registered with the parser. Firstly, create an error handler and register it - I use something like the following: function myErrorHandler($errno, $errstr, $errfile, $errline) { $locStrMessage = $errfile . " " .

[PHP] verify that email exist ?

2001-01-30 Thread kaab kaoutar
Hi! is there a way whith which i can check, before confirming a form, whether the email exists ? i think it's a bit difficult but maybe it's doable ? thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotm

Re: [PHP] verify that email exist ?

2001-01-30 Thread Website4S
Hi, I don`t think it is possible to check that an email actually exists but what you could do is make them confirm there email by sending them a code, if they enter the right code on the next page then they have recieved the email and it obviously exists. HTH Ade -- PHP General Mailing List

[PHP] email headers!

2001-01-30 Thread kaab kaoutar
Hi! how can i add Bcc Cc and others to my email? i use $headers="Bcc:[EMAIL PROTECTED]\nCc:[EMAIL PROTECTED]"; mail($email,$subject,$body,$headers)) but i receive it only once ? Thanks _ Get Your Private, Free E-mail from

[PHP] Ultradev

2001-01-30 Thread kaab kaoutar
Hi! i used to work with asp on ultradev, and i believe it's a pretty nice tool, i know that it generate asp, jsp and coldfusion files but not php ! do u know a tool equivalent to ultradev that generates php files or more do u know of a version of ultradev that generates php ? Thanks? _

[PHP] Richard Heyes HTML Mime Mail class

2001-01-30 Thread Nicklas af Ekenstam
Hi all! I've just downloaded and started playing aorund with ;-) Looks great! Only one problem though: I'd like to be able to use the included smtp-class for delivering serveral messages through the same smtp-connection before closing it and I'm too stupid to figure out how to do it myself.

[PHP] httpd-prozess doesn't get killed

2001-01-30 Thread Thomas Weber
Hi, i code a streaming chat in PHP4. Everithing works fine, it is very fast due to use of shared memory. But i have this problem: Every time i start the script a new httpd-process is started (Apache 1.3.12). So far so good. But the process doesn't get killed when aborting or reloading the script.

RE: [PHP] major help required with php3 and apache on suse 7.0 pro

2001-01-30 Thread Thomas Weber
Hi, i run SuSE 7.0 too, but i think you cannot use mod_php3 AND mod_php4 together. -Original Message- From: bob [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 9:48 AM To: [EMAIL PROTECTED] Subject: [PHP] major help required with php3 and apache on suse 7.0 pro Importance: Hig

[PHP] PHP3 + Sessions?

2001-01-30 Thread Sean Kennedy
I was wondering if there are any functions in php3 that would allow me to play with sessions. In the docs at the php site, most if not all the functions they have listed there were added in php4, but my server is still setup with php3. Any help is appreciated! Sean Kennedy

Re: [PHP] W2K Pro, IIS5.0 + PHP4.4 install trouble....

2001-01-30 Thread Niel Zeeman
Maybe you could try this no quarentees :) Niel Zeeman - Original Message - From: "Sebastian Stadtlich" <[EMAIL PROTECTED]> To: "'Php-General (E-Mail)" <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 12:26 PM Subject: [PHP] W2K Pro, IIS5.0 + PHP4.4 install trouble > i just insta

Re: [PHP] Sending Download Header

2001-01-30 Thread Christian Reiniger
On Sunday 28 January 2001 17:52, Natasha wrote: > The filename is just the name, the content is what > matters, and also wanted to know if echoing binary > data is ok ? Yes. That's what application/octet-stream means: binary data. > and what about images, can i send it through octect > stream ?

Re: [PHP] W2K Pro, IIS5.0 + PHP4.4 install trouble....

2001-01-30 Thread kaab kaoutar
Do u call it from http://server/phpdirectory/file.php? assuming ofcourse that u've created a phpdirectory in inetpub/wwwroot where u put ur php files ! >From: "Niel Zeeman" <[EMAIL PROTECTED]> >To: "Sebastian Stadtlich" <[EMAIL PROTECTED]>, "php gen list" ><[EMAIL PROTECTED]> >Subject: Re: [

RE: [PHP] Editor

2001-01-30 Thread Christian Sakshaug
>EditPlus.com ($?) Free I think... >-Original Message- >From: Christian Sakshaug [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, January 30, 2001 4:45 PM >To: [EMAIL PROTECTED] >Subject: Re: [PHP] Editor > > >Try www.phpedit.com or www.ultraedit.com (30$) > > >At 08:37 30.01.2001, you wrot

[PHP] Odbc_connect!

2001-01-30 Thread kaab kaoutar
Hi! i have an oracle Database and i wanted to use odbc functions i tried it but it gives me faile to connect, so i tried an access Database that i put in dsn system etc and i still have the same error! here is the code : if (($res = Odbc_Connect("WebZine","kaab","kaab")==0)) { print ("

[PHP] interreng problem ..

2001-01-30 Thread hsmith
Hi all I'm having a small problem here is code: as you can see ... it replace "$page_name_heading"; instead of just "$page_name"; any ideas how to get around this ? henti -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] email headers!

2001-01-30 Thread Christian Reiniger
On Tuesday 30 January 2001 12:06, kaab kaoutar wrote: > how can i add Bcc Cc and others to my email? > i use > $headers="Bcc:[EMAIL PROTECTED]\nCc:[EMAIL PROTECTED]"; > mail($email,$subject,$body,$headers)) > but i receive it only once ? I guess your mail server is simply too intelligent - it re

[PHP] these url icons fashion

2001-01-30 Thread kaab kaoutar
Hi! maybe this questio has nothing to do with php and maybe not ! well i noticed that in internet explorer some urls have their own icon instead of the one of explorere!here is a sample :www.php.net any ideas of how to do that ? Thanks _

[PHP] Prefilling select boxes ?

2001-01-30 Thread matthewt tozer
If you make your users fill in form details and they forget to fill in an important field, you'd want to return them to the same page prefilling all fields they already populated. My question is how can you prefil a select box ( drop down list ) with the item they selected ? Is there a me

Re: [PHP] PHP3 + Sessions?

2001-01-30 Thread Devta Singh
Use this: http://www.phpheaven.net/resources/libraries/php3Sessions/ -- Devta Singh Webmaster ZDNet España [EMAIL PROTECTED] -- - Original Message - From: "Sean Kennedy" <[EMAIL PROTECTE

Re: [PHP] Editor

2001-01-30 Thread Kath
I'm partial to PHPEd. - Kath - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 2:37 AM Subject: [PHP] Editor > Hi, > > I know this has been asked before but I can`t seem to get the archive email > thingy to work, basically I`m lookin

RE: [PHP] these url icons fashion

2001-01-30 Thread Boaz Yahav
http://www.favicon.com Sincerely berber Visit http://www.weberdev.com Today!!! To see where PHP might take you tomorrow. > -Original Message- > From: kaab kaoutar [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 30, 2001 2:10 PM > To: [EMAIL PROTECTED] > Subject: [PHP] the

Re: [PHP] Ultradev

2001-01-30 Thread Kath
My copy of UltraDev 4 lets you work with PHP. Might not have all the bells and whistles, but it works good and lets me seemlessly mix HTML/JScript/PHP. :) - Kath - Original Message - From: "kaab kaoutar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 6:11 AM

Re: [PHP] Editor

2001-01-30 Thread Brian Clark
Hello Maxim, (MM == "Maxim Maletsky") [EMAIL PROTECTED] channelled: MM> EditPlus.com ($?) Yep. http://www.editplus.com/ -Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

Re: [PHP] Thumbnails and PHP

2001-01-30 Thread Brian Clark
Hello Todd, (TC == "Todd Cary") [EMAIL PROTECTED] uttered: TC> If I do and all works fine - TC> the 's "word wrap". But, when I do and TC> , I get a horizontal scroll bar and the 's TC> go off to the left. Just leave out the width attribute for the tag. You probably don't want to use fixe

Re: [PHP] Problems with majodomo

2001-01-30 Thread Brian Clark
Hello Alan, (AT == "Alan Todd") [EMAIL PROTECTED] stated: AT> mail("$majordomo", "", "$action $list $email","From: $email"); Try this and see if it works: mail($majordomo, '', "$action $list $email\n\r","From: $email\n\r"); -Brian -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] interreng problem ..

2001-01-30 Thread Brian Clark
Hello henti, (htc == "[EMAIL PROTECTED]") [EMAIL PROTECTED] accounted: htc> as you can see ... it replace "$page_name_heading"; instead of htc> just "$page_name"; any ideas how to get around this ? How about: include("templates/$webit_layout_id/${page_name}_heading.php3"); or: include("temp

Re: [PHP] E Bay is going up again..

2001-01-30 Thread Brian Clark
Hello James, (JM == "James Moore") [EMAIL PROTECTED] calculated: JM> There are various reasons why what you suggested will not happen, JM> if you really want to see why look in the archives there are JM> plenty of posts. You have a delete key so use it. "Hey, your window is open, so you won't

Re: [PHP] Odbc_connect!

2001-01-30 Thread Brian Clark
Hello kaab, (kk == "kaab kaoutar") [EMAIL PROTECTED] told: kk> if (($res = Odbc_Connect("WebZine","kaab","kaab")==0)) Just a wild guess, you might want: if (($res = Odbc_Connect("WebZine","kaab","kaab")) == 0) kk> { kk> print ("Couldn't connect to database\n"); kk> exit ();

Re: [PHP] using fopen, but warned "permission denied"

2001-01-30 Thread Brian Clark
Hello Zenith, (Z == "Zenith") [EMAIL PROTECTED] accounted: Z> I installed my php + apache in my linux box, with compiled the php as an Z> apache module. any my web server is run as nobody ( by default ). Z> However, I was warned with "fopen("tester.db","w") - Permission denied" Z> I can on

Re: [PHP] Prefilling select boxes ?

2001-01-30 Thread Brian Clark
Hello matthewt, (mt == "matthewt tozer") [EMAIL PROTECTED] forecasted: mt> question is how can you prefil a select box ( drop down list ) mt> with the item they selected ? Something not unlike: > -Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PRO

[PHP-CVS] cvs: CVSROOT / avail cvsusers gen_acl_file.m4

2001-01-30 Thread Rasmus Lerdorf
rasmus Tue Jan 30 04:27:25 2001 EDT Modified files: /CVSROOTavail cvsusers gen_acl_file.m4 Log: Account for Adam Dickmeiss Index: CVSROOT/avail diff -u CVSROOT/avail:1.63 CVSROOT/avail:1.64 --- CVSROOT/avail:1.63 Mon Jan 29 14:28:18 2001 +++ CVSROOT/a

Re: [PHP] verify that email exist ?

2001-01-30 Thread Brian Clark
Hello Website4S, (Wac == "[EMAIL PROTECTED]") [EMAIL PROTECTED] etched: Wac> I don`t think it is possible to check that an email actually Wac> exists but what It's possible: http://phpclasses.upperdesign.com/browse.html/package/13 Class that may be used to determine if a given e-mail

Re: [PHP] Passing HTTP_COOKIE_VARS to functions

2001-01-30 Thread Brian Clark
Hello Jamie, (J == "Jamie") [EMAIL PROTECTED] scratched: J> PrefResults($HTTP_COOKIE_VARS["cookie_user"],$HTTP_COOKIE_VARS["cookie_passw J> ord"]); Try putting at the top of your script and see if it makes any difference. -Brian -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-01-30 Thread Rasmus Lerdorf
rasmus Tue Jan 30 04:41:46 2001 EDT Modified files: /CVSROOTavail gen_acl_file.m4 Log: Some karma for the udmsearch folks Index: CVSROOT/avail diff -u CVSROOT/avail:1.64 CVSROOT/avail:1.65 --- CVSROOT/avail:1.64 Tue Jan 30 04:27:24 2001 +++ CVSROOT/ava

[PHP-CVS] cvs: php4 /ext/mnogosearch Makefile.in README config.m4 php_mnogo.c php_mnogo.h setup.stub test.php

2001-01-30 Thread Sergey Kartashoff
gluke Tue Jan 30 04:54:11 2001 EDT Added files: /php4/ext/mnogosearch Makefile.in README config.m4 php_mnogo.c php_mnogo.h setup.stub test.php Log: mnoGoSearch extension module initial version has been added. This modu

[PHP-CVS] cvs: php4 /ext/dotnet .cvsignore

2001-01-30 Thread Harald Radi
phanto Tue Jan 30 04:59:59 2001 EDT Added files: /php4/ext/dotnet.cvsignore Log: adding .cvsignore Index: php4/ext/dotnet/.cvsignore +++ php4/ext/dotnet/.cvsignore *.plg Release Release_inline Debug Release_TS Release_TSDbg Release_TS_inline Debug_TS

[PHP-CVS] cvs: php4 /win32 .cvsignore

2001-01-30 Thread Harald Radi
phanto Tue Jan 30 05:00:39 2001 EDT Modified files: /php4/win32 .cvsignore Log: fixing .cvsignore Index: php4/win32/.cvsignore diff -u php4/win32/.cvsignore:1.1 php4/win32/.cvsignore:1.2 --- php4/win32/.cvsignore:1.1 Sat Aug 19 12:08:32 2000 +++ php4/win32/.

Re: [PHP] PHP3 + Sessions?

2001-01-30 Thread Sean Kennedy
Thank you, I will. - Original Message - From: Devta Singh <[EMAIL PROTECTED]> To: Sean Kennedy <[EMAIL PROTECTED]>; PHP Mailing List <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 4:13 AM Subject: Re: [PHP] PHP3 + Sessions? > Use this: > http://www.phpheaven.net/resources/librarie

RE: [PHP] these url icons fashion

2001-01-30 Thread kaab kaoutar
hi! It works only in the bookmark ! but ib the url address, it does not show! thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] RegEx and URLs

2001-01-30 Thread Joe Sheble (Wizaerd)
I have some text that may or may not contain valid URLs (anything starting with an http:// or a mailto:). Some of these URLs may or may not be contained within a valid A HREF tag. Could somebody help me out with a regex that would find all the URLs that are not already contained in an A HREF tag

RE: [PHP] major help required with php3 and apache on suse 7.0 pro

2001-01-30 Thread Thomas Weber
in yout httpd.conf (/etc/httpd/httpd.conf i think) there is a section . Just comment out the lines with and and add your prefered extension to a line with AddType. Then restart the Apache and it should work. For administration it is always good you are running a Webmin-Server on your box. ( htt

[PHP] RegEx and URLs

2001-01-30 Thread Joe Sheble (Wizaerd)
I have some text that may or may not contain valid URLs (anything starting with an http:// or a mailto:). Some of these URLs may or may not be contained within a valid A HREF tag. Could somebody help me out with a regex that would find all the URLs that are not already contained in an A HREF tag

[PHP] Forbidden to browse 2001012

2001-01-30 Thread dphillips
Can someone get this to the list maintainer? First time I've gotten this error message. Can't browse the current archive directory. I get the error message: "You don't have permission to access /mail/php-general/2001012/ on this server" --David -- PHP General Mailing List (http://

RE: [PHP] these url icons fashion

2001-01-30 Thread kaab kaoutar
hi! Hi tried it ! and get the icon by email and add the following : http://www.idnetdor.com/favicon.ico"> Nouvelle page 1 test but it still does not work !? can u please help! i'm in hurry to see it works :) thanks >From: Boaz Yahav <[EMAIL PROTECTED]> >To: 'kaab kaoutar' <[EMAIL PROTECTE

[PHP] string length?

2001-01-30 Thread Kevin Connolly
Hi, I am quite new to PHP scripts and I have run into a little problem with my string! I have a string called $numbers which is 5;6;12;21;36;42 (for example, it can be any 6 numbers between 1 and 42). Is there an easy way that I can find out how many numbers there are in the string without the f

php-general Digest 31 Jan 2001 00:15:17 -0000 Issue 483

2001-01-30 Thread php-general-digest-help
php-general Digest 31 Jan 2001 00:15:17 - Issue 483 Topics (messages 37275 through 37319): Re: mail( ) question 37275 by: Jon Haworth disabling php ability via .htaccess 37276 by: Martin Pitt 37277 by: php3.developersdesk.com using fopen, but warned "permission den

[PHP] HowTo: IBM DB2 w/PHP

2001-01-30 Thread Karl J. Stubsjoen
Hello, We have succesfully installed the IBM DB2 RDMS on our Linux box and have successfully made a connection to our AS400. All through command line though. I am new to PHP, and am wondering: How do I instantiate the IBM DB2 in PHP, call commands, run queries, etc...? I'm not looking for all th

RE: [PHP] Strange problem

2001-01-30 Thread johnny p.
Sounds like there's no swap space left to me... -jp > -Original Message- > From: Dustin Butler [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 26, 2001 11:11 PM > To: 'Jeroen Jochems'; php-general (E-mail) > Subject: RE: [PHP] Strange problem > > > There are FTP functions if it's an F

[PHP] void function();

2001-01-30 Thread James, Yz
Hi there all, Very dumb question I just read one of the quickref functions, and the in-built function is referenced as being : void function(integer); What does the void mean? And how would I use the function? I just get a parse error when I use the function with the "void" in it and the

[PHP] PHP MySQL password

2001-01-30 Thread Egan
I know that ~.my.cnf with [client] password={mypass} is the recommended method of securing your MySQL password when using a shell command line to access MySQL. But what is the recommended method for MySQL password security via PHP? Is there some way to make it use the ~.my.cnf file? It se

[PHP] could someone point me to a phpbased searchengine crawler?

2001-01-30 Thread Sebastian Stadtlich
I have a tool, that submits our clients pages to popular searchengines. now i need a script that crawls popular searchengines and look where our pages are ranked... i'm sure there must be something like that out there, but i can't find it Sebastian Stadtlich

[PHP] trouble with a query object

2001-01-30 Thread Jason Jacobs
Hi all. I'm retrieving some data from a database and writing it into an object with mysql_fetch_object. In a loop, using list and each, I'm checking the values and printing them out accordingly. I get a parse error that says it's expecting a string. Here's the code... $nameArray =

[PHP] PHP 4.04pl1 Build on NetBSD 1.5

2001-01-30 Thread Robert Hough
I've been trying to build PHP 4.04pl1 on a NetBSD 1.5 (sparc) machine for the past couple of days, but haven't had much luck. The first error I was getting resulted in the following message while running make: /usr/bin/ld: unrecognized option `-Wl,--whole-archive' I went through and removed any

RE: [PHP] verify that email exist ?

2001-01-30 Thread kaab kaoutar
Hi! I have tried to use email_validation.php3 i've filled the localhost by hotmail.com and localuser by kaab_k and added the following code : $test=new email_validation_class; echo $test->ValidateEmailBox("[EMAIL PROTECTED]"); but i have the following error: Fatal error: Maximum execution time of

[PHP] hello

2001-01-30 Thread SuiteNet Operations Manager
I asked you a few questions before. I have tried getting 2 different books for learning mysql and on is learn mysql in 21 days, And it seems the commands that are in the book will not work. And then I took that book back and bought learn php and mysql from scratch this book will not work either im

[PHP] PC<->Mac

2001-01-30 Thread Markus H. Maussner
Hi.. is there a PHP function wich translates from Mac to PC ? like for example the german "ae" (cant type it here with my keyboard) is a different carracter than the same sybol when it is typed on the macintosh. (i mean the acii value) i know the values from the pc side, but not from the macinto

Re: [PHP] dynamic php vs static

2001-01-30 Thread Dan Phoenix
?? in apache or php configure? On Fri, 5 Jan 2001, jeremy brand wrote: > Date: Fri, 5 Jan 2001 12:57:13 -0800 (PST) > From: jeremy brand <[EMAIL PROTECTED]> > To: Dan Phoenix <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] dynamic php vs static > > --with-apache > > Jeremy

Re: [PHP] form validation :ereg ()

2001-01-30 Thread kaab kaoutar
Hi! no it dose not work! now it even not accepts kaab ? for the space, what i mean is that the user won't insert space only ! >From: jaydub <[EMAIL PROTECTED]> >To: kaab kaoutar <[EMAIL PROTECTED]> >Subject: Re: [PHP] form validation :ereg () >Date: Tue, 30 Jan 2001 09:21:09 -0800 (PST) > >The

[PHP] Inconsistency session ?

2001-01-30 Thread johan
Dear all, I got problem with session.. at first script is executed, (which we put session_start at there) we got cookies PHPSESSID, and I track it in directory /tmp, and I see it. at second script is executed (which we put session_start again), we register some variabel session, and I track it in

Re: [PHP] where to get php_oracle.dll for win32?

2001-01-30 Thread Brian Clark
Hello kaab, (kk == "kaab kaoutar") [EMAIL PROTECTED] cried: kk> i still have'nt found the php_oracle.dll file ! kk> i've checked in php4win.de but in vain! Are sure you need it? On http://php4win.de/ under `2001-01-13 updates' it states that oracle extensions are included. Optionally: http

Re: [PHP] MS SQL 7.0 - Functions

2001-01-30 Thread Brian Clark
Hello Santhyago, (SBG == "Santhyago Bueno Gallão") [EMAIL PROTECTED] alleged: SBG> Which are the functions of php to controler a data base Microsoft SBG> SQL 7? http://www.php.net/manual/en/ref.mssql.php -Brian -- He who laughs last probably made a backup. -- PHP General Mailing List (ht

Re: [PHP] sessions or db for shopping cart

2001-01-30 Thread Brian Clark
Hello Matthew, (MD == "Matthew Delmarter") [EMAIL PROTECTED] steered: MD> 1. Using arrays stored in a PHP4 session vs. a database for MD> storing cart details. Bad idea, if you're dealing with cookies, as any user can manipulate the data on the client side and have your server gleefully accep

Re: [PHP] Javascript doesn't work with PHP????

2001-01-30 Thread Brian Clark
Hello Dhaval, (DD == "Dhaval Desai") [EMAIL PROTECTED] detected: DD> I am facing a very big Proble,m with this javascript below: I have DD> gotten a form validation script. Please copy the script save as DD> .php and try it out..It doesn't server the purpose...Can anybody DD> point me to right

Re: [PHP] Interactive external program execution

2001-01-30 Thread Brian Clark
Hello Paul, (P == "Paul") [EMAIL PROTECTED] discovered: P> During the course of a cronjob scheduled script, I need to execute an P> external program which connects to another server using an P> implementation of eftp (sort of ftp for ISDN). The eftp program returns P> no success/error codes, i

RE: [PHP] Richard Heyes HTML Mime Mail class

2001-01-30 Thread Richard Heyes
> I've just downloaded and started playing aorund with echo($subject); ?> ;-) > > Looks great! Only one problem though: > > I'd like to be able to use the included smtp-class for > delivering serveral > messages through the same smtp-connection before closing it > and I'm too > stupid to fi

[PHP] Re: Cookie with Netscape

2001-01-30 Thread Kristofer Widholm
At 11.08 -0800 01-01-29, Eugene Yi (InfoSpace Inc) poked the keyboard as follows: >I set up a cookie using the following command and it works fine under IE but >not in Netscape. Am I doing something wrong? > >setcookie("mycookie[1]",$domain,"","/","mydomain.com"); > >Please help me. Thanks much

[PHP] Making sure a variable doesn't contain a comma

2001-01-30 Thread Brandon Orther
Does anyone know how I can check a variable for a comma and remove it if it does have one? Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com

[PHP] help:php

2001-01-30 Thread ky reddy
hai, i am facing problem. i clearly mentioned in the attached file. please reply i a held up. regards, _ Chat with your friends as soon as they come online. Get Rediff Bol at http://bol.rediff.com dear richard, [EMAIL PROTECTED] i am

[PHP] PHP4.04pl1 upgrade

2001-01-30 Thread Erich Kolb
Does anyone know where to obtain instructions on how to upgrade to PHP 4.04pl1? Has anyone done this yet? What kind of problems did you run into?

[PHP] Readfile only return error

2001-01-30 Thread Karl J. Stubsjoen
Hello, I'm performing a readfile, and am expecting that if the file isn't found and error will return unless you add the @ symbol before the readfile function as in: $retrn = @readfile ($FileName); My page only errors, and doesn't return false. I don't want my page to error, I would like to di

Re: [PHP] string length?

2001-01-30 Thread Jon Jacob
Kevin Connolly wrote: > > Hi, > I am quite new to PHP scripts and I have run into a little problem with my string! > I have a string called $numbers which is 5;6;12;21;36;42 (for example, it can be any >6 numbers between 1 and 42). > Is there an easy way that I can find out how many numbers ther

[PHP] PDF Questions

2001-01-30 Thread Conover, Ryan
I was wondering if anyone has any good places to answer questions pertaining to PDF and PHP. Ryan -- 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 PRO

  1   2   >