Re: [PHP] GET HEADLINES FROM ANOTHER SITE

2003-02-04 Thread Chris Shiflett
--- The New Source <[EMAIL PROTECTED]> wrote: > I´d like to know how to get certain headlines from > another site. Research RSS. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Chris Shiflett
--- Miles Thompson <[EMAIL PROTECTED]> wrote: > Ananth, > > For starters, you are probably on the wrong list - > the PHP developers list is probably where you should > be asking this question. Please do not go around saying this. We have enough problems with these types of posts winding up on php

Re: [PHP] Converting links in strings

2003-02-04 Thread Chris Shiflett
--- Randum Ian <[EMAIL PROTECTED]> wrote: > Please can someone direct me to the correct function > that changes http://www.foo.com to href="http://www.foo.com";>http://www.foo.com > for any occurence in a string. Sure http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&safe=off&q=PHP+makin

[PHP] Re: Problem with include PHP 4.3.0

2003-02-04 Thread Jean-Pierre Gallou
Goetz Lohmann wrote : wich means that "testinclude.php" includes "inc/inc1.php" and "inc/inc1.php" includes "inc/inc2.php" ? Right. I'm sorry, I didn't modify testinclude.php as you suggested, but inc1.php. With a modified testinclude.php: I get: Failed opening './inc/inc1.php' for inclus

Re: [PHP] tracking bulk email

2003-02-04 Thread Lowell Allen
> From: "Matt Schroebel" <[EMAIL PROTECTED]> > >> -Original Message- >> From: Lowell Allen [mailto:[EMAIL PROTECTED]] >> Sent: Monday, February 03, 2003 12:38 PM >> To: PHP >> Subject: [PHP] tracking bulk email >> (1) My client is nervous about the script failing mid-list >> and not being

RE: [PHP] tracking bulk email

2003-02-04 Thread Miles Thompson
Do the database updates, it's what db's are for!Q M. At 09:40 AM 2/4/2003 -0500, Leonard Burton wrote: What about making the log a .txt file and not a database? Wouldnt that be quicker? Leonard. -Original Message- From: Lowell Allen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04

Re: [PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Miles Thompson
Ananth, For starters, you are probably on the wrong list - the PHP developers list is probably where you should be asking this question. Second, PHP runs through the web server, so the user is the same user the web server, usually "nobody", although that depends on the how the web server is in

Re: [PHP] Is my syntax wrong?

2003-02-04 Thread 1LT John W. Holmes
>The following code is giving me a "parse error, unexpected T_STRING." > >$inc_current_ad = WrapMySQLDatabaseResults("macasap", "update ads where >ad_id = '.$current_ad->Value("ad_id").' set >rotate='.$current_ad->Value("rotate")+1.'", >"block=0","inc_current_ad"); > >It's supposed to increment the

Re: [PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Maxim Maletsky
"Ananth Kesari" <[EMAIL PROTECTED]> wrote... : > I am working on porting PHP onto NetWare. What exactly do you mean? > I am newbie to Unix / Linux systems and at this point of time, I am > trying to understand the way security is implemented for PHP on Unix / > Linux. I mean, how are the diffe

Re: [PHP] tracking bulk email

2003-02-04 Thread Lowell Allen
> From: "Leonard Burton" <[EMAIL PROTECTED]> > > What about making the log a .txt file and not a database? Wouldnt that be > quicker? [snip] >> Thanks, Kevin. I've put a counter in place within my mail loop. It seems to >> slow the process, but perhaps not too much. And thanks to Mark McCulligh

[PHP] Is my syntax wrong?

2003-02-04 Thread Brian Dunning
Hi, The following code is giving me a "parse error, unexpected T_STRING." $inc_current_ad = WrapMySQLDatabaseResults("macasap", "update ads where ad_id = '.$current_ad->Value("ad_id").' set rotate='.$current_ad->Value("rotate")+1.'", "block=0","inc_current_ad"); It's supposed to increment th

Re: [PHP] php3 + HTTP_POST_FILES

2003-02-04 Thread Maxim Maletsky
No, PHP3 does not support it. http://www.php.net/manual/en/features.file-upload.php";> Note: In PHP versions prior 4.1.0 this was named $HTTP_POST_FILES and it's not an autoglobal variable like $_FILES is. PHP 3 does not support $HTTP_POST_FILES. -- Maxim Maletsky [E

RE: [PHP] tracking bulk email

2003-02-04 Thread Matt Schroebel
> -Original Message- > From: Lowell Allen [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 03, 2003 12:38 PM > To: PHP > Subject: [PHP] tracking bulk email > (1) My client is nervous about the script failing mid-list > and not being > able to determine which contacts were sent mail. I

[PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Ananth Kesari
Hi, I mailed this earlier, but got no response. Maybe it went unnoticed. So, resending it again. Please read below. Your help in this is appreciated. Thanks, Ananth. Hi, I am working on porting PHP onto NetWare. I am newbie to Unix / Linux systems and at this point of time, I am trying to un

[PHP] GET HEADLINES FROM ANOTHER SITE

2003-02-04 Thread The New Source
I´d like to know how to get certain headlines from another site. I already got the permission from the site owner, but I'm short on the programing. It would be something like, get the source code from the url: www.url.com and then remove all the html, and get only the part that I need. Does anyb

RE: [PHP] tracking bulk email

2003-02-04 Thread Leonard Burton
What about making the log a .txt file and not a database? Wouldnt that be quicker? Leonard. -Original Message- From: Lowell Allen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 7:27 AM To: PHP Subject: Re: [PHP] tracking bulk email > From: "Kevin Stone" <[EMAIL PROTECTED]>

RE: [PHP] Which link was selected?

2003-02-04 Thread Leonard Burton
Good Catch, Be just as an advisement besure to escape those quotes with a backslash \" Leonard. -Original Message- From: Götz Lohmsnn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 4:09 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Which link was selected? Leonard Burton sch

[PHP] Re: restricting acces to files

2003-02-04 Thread Goetz Lohmann
Goetz Lohmann schrieb: > Goetz Lohmann schrieb: > >>Shams schrieb: >> >> >>>Hi, >>> >>>i've written a secure PHP login script which will allow users to login to a >>>directory such as this: >>> >>>smezone.com/members/index.php >>> >>>however, how do I restrict people from accessing HTML files in t

Re: [PHP] authentication

2003-02-04 Thread Goetz Lohmann
Goetz Lohmann schrieb: > [EMAIL PROTECTED] schrieb: > >>I don't think the process is an extra step at all. In fact, it's just a >>trade off using one or the other. You can either login using php and a >>database backend or just authenticate using .htaccess directives. >> > > > > >>On Mon, 3 Fe

Re: [PHP] exec

2003-02-04 Thread Jason Sheets
Hi Nick, PHP's execution commands like exec will execute the program as the user your web server is running as (generally someone like nobody or www), in order to get it to execute as someone else the program needs to be setuid. Running programs as Root setuid is generally considered dangerous an

[PHP] Re: restricting acces to files

2003-02-04 Thread Goetz Lohmann
Goetz Lohmann schrieb: > Shams schrieb: > >>Hi, >> >>i've written a secure PHP login script which will allow users to login to a >>directory such as this: >> >>smezone.com/members/index.php >> >>however, how do I restrict people from accessing HTML files in that >>directory (which they can easily

Re: [PHP] authentication

2003-02-04 Thread Goetz Lohmann
[EMAIL PROTECTED] schrieb: > I don't think the process is an extra step at all. In fact, it's just a > trade off using one or the other. You can either login using php and a > database backend or just authenticate using .htaccess directives. > > On Mon, 3 Feb 2003, Chris Shiflett wrote: > > >

Re: [PHP] Getting key of value added to array with []?

2003-02-04 Thread Adam Voigt
foreach($counter = 0; $counter < 10; $counter++) { $array[] = $counter; } $lastkey = (count($array)-1); On Tue, 2003-02-04 at 06:43, Leif K-Brooks wrote: Is there any way to get the key of an element added to an array with []? I need to use this for a reference

php-general Digest 4 Feb 2003 13:44:09 -0000 Issue 1863

2003-02-04 Thread php-general-digest-help
php-general Digest 4 Feb 2003 13:44:09 - Issue 1863 Topics (messages 134199 through 134258): list files in a dictory and its subdirectories 134199 by: Tomas Vorobjov 134202 by: Jason Sheets Re: Help with classes (oop) 134200 by: Maxim Maletsky Re: Bi-weekly pay peri

Re: [PHP] Bi-weekly pay period

2003-02-04 Thread bob parker
On Tue, 4 Feb 2003 11:17, Sarah Heffron wrote: > I'm writing a quick little thing to act as a time clock since people are > writing out by hand and it's not so accurate. It's basically click a button > to clock in and click a button to clock out. > > What I also want to do is create a report (well

Re: [PHP] authentication

2003-02-04 Thread ed
I don't think the process is an extra step at all. In fact, it's just a trade off using one or the other. You can either login using php and a database backend or just authenticate using .htaccess directives. In my case (a few months back) what I was trying to do was offer up a single login page

[PHP] Re: Problem with include PHP 4.3.0

2003-02-04 Thread Goetz Lohmann
Jean-Pierre Gallou schrieb: > Thank you for your reply. Goetz Lohmann wrote : > >> Failed opening '/inc/inc2.php' > > > Yes, I don't understand the reason of the leading slash in the error > message. > >> ... maybe try something like >> >> include('./inc/inc1.php'); >> ^^ > > > same

[PHP] Re: include_path problem on RH 8

2003-02-04 Thread Goetz Lohmann
Paul schrieb: > Thanks for the info. But I notice that I didn't really state the essence of my >problem, which is that I can't get PHP to locate any include directory I put in the >php.ini, thus no files I want to include get included. > > Paul schrieb: > > >>>Using RH 8, php 4.2.2, Apache 2.0

Re: [PHP] Getting key of value added to array with []?

2003-02-04 Thread 1LT John W. Holmes
> Is there any way to get the key of an element added to an array with []? > I need to use this for a reference to it. The only idea I can think of > is to foreach through the array and use the last key looped through, but > that seems very dirty. If elements are only being added with [], then y

Re: [PHP] tracking bulk email

2003-02-04 Thread Lowell Allen
> From: "Kevin Stone" <[EMAIL PROTECTED]> > > - Original Message - > From: "Lowell Allen" <[EMAIL PROTECTED]> > >> I've added an email feature to a content management system that will send >> plain text email to about 1400 contact addresses. Each contact is sent a >> separate email with t

[PHP] Re: Problem with include PHP 4.3.0

2003-02-04 Thread Jean-Pierre Gallou
Thank you for your reply. Goetz Lohmann wrote : Failed opening '/inc/inc2.php' Yes, I don't understand the reason of the leading slash in the error message. ... maybe try something like include('./inc/inc1.php'); ^^ same thing: Failed opening './inc/inc2.php' for inclusion -- PH

[PHP] Re: mail function

2003-02-04 Thread Goetz Lohmann
Dale schrieb: > I am trying to configure the php.ini file so that I can use the mail > function in my code. The problem I am facing is that I get the following > error message when I try to run my code: > > Warning: mail() [function.mail]: SMTP server response: 550 Relaying is > prohibited > thi

[PHP] Re: Getting key of value added to array with []?

2003-02-04 Thread Goetz Lohmann
Leif K-Brooks schrieb: > Is there any way to get the key of an element added to an array with []? > I need to use this for a reference to it. The only idea I can think of > is to foreach through the array and use the last key looped through, but > that seems very dirty. > $foo[]='bar'; will ins

[PHP] Re: include_path problem on RH 8

2003-02-04 Thread Paul
Thanks for the info. But I notice that I didn't really state the essence of my problem, which is that I can't get PHP to locate any include directory I put in the php.ini, thus no files I want to include get included. Paul schrieb: >> Using RH 8, php 4.2.2, Apache 2.0, I'm getting (from phpinfo

[PHP] mail function

2003-02-04 Thread Dale
I am trying to configure the php.ini file so that I can use the mail function in my code. The problem I am facing is that I get the following error message when I try to run my code: Warning: mail() [function.mail]: SMTP server response: 550 Relaying is prohibited Any suggestions? Thanks, Dale

[PHP] Re: include_path problem on RH 8

2003-02-04 Thread Goetz Lohmann
Paul schrieb: > Using RH 8, php 4.2.2, Apache 2.0, I'm getting (from phpinfo) a reported include >path of .:/usr/share/pear no matter what I put in the include_path in php.ini. The >info also says it's using /etc/php.ini as the config file. > > And, yes, I've restarted Apache many times. I've tr

[PHP] Getting key of value added to array with []?

2003-02-04 Thread Leif K-Brooks
Is there any way to get the key of an element added to an array with []? I need to use this for a reference to it. The only idea I can think of is to foreach through the array and use the last key looped through, but that seems very dirty. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Converting links in strings

2003-02-04 Thread Goetz Lohmann
Randum Ian schrieb: > Hi all, > > Please can someone direct me to the correct function that changes > http://www.foo.com to http://www.foo.com";>http://www.foo.com > for any occurence in a string. > > Cheers, Ian. > do you wish convert a string in a link ??? try: $string1"; ?> or a link in

[PHP] Re: Variable objects?

2003-02-04 Thread Goetz Lohmann
Leif K-Brooks schrieb: > I'm planning to use variable objects in a new project I'm working on. > The problem is, I can't find one page of documentation on them, so I > can't be sure if I'm going to be using an accidential feature that will > disappear. As an example of them working, the following

[PHP] Re: Problem with include PHP 4.3.0

2003-02-04 Thread Goetz Lohmann
Jean-Pierre Gallou schrieb: > Hi, > > I have problems with relative paths and 4.3.0. Include() do not seem to > work the same way in 4.3.0 and 4.2.1. Consider this test: > > test/ > |- testinclude.php > |- inc/ > |- inc1.php > |- inc2.php OK > > With PHP 4.2.1, wor

[PHP] Converting links in strings

2003-02-04 Thread Randum Ian
Hi all, Please can someone direct me to the correct function that changes http://www.foo.com to http://www.foo.com";>http://www.foo.com for any occurence in a string. Cheers, Ian. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include_path problem on RH 8

2003-02-04 Thread Paul
Using RH 8, php 4.2.2, Apache 2.0, I'm getting (from phpinfo) a reported include path of .:/usr/share/pear no matter what I put in the include_path in php.ini. The info also says it's using /etc/php.ini as the config file. And, yes, I've restarted Apache many times. I've tried many variations on

[PHP] Re: restricting acces to files

2003-02-04 Thread Goetz Lohmann
Goetz Lohmann schrieb: > Shams schrieb: > >>Hi, >> >>i've written a secure PHP login script which will allow users to login to a >>directory such as this: >> >>smezone.com/members/index.php >> >>however, how do I restrict people from accessing HTML files in that >>directory (which they can easily

[PHP] Variable objects?

2003-02-04 Thread Leif K-Brooks
I'm planning to use variable objects in a new project I'm working on. The problem is, I can't find one page of documentation on them, so I can't be sure if I'm going to be using an accidential feature that will disappear. As an example of them working, the following outputs "In a_class.": cla

[PHP] Problem with include PHP 4.3.0

2003-02-04 Thread Jean-Pierre Gallou
Hi, I have problems with relative paths and 4.3.0. Include() do not seem to work the same way in 4.3.0 and 4.2.1. Consider this test: test/ |- testinclude.php |- inc/ |- inc1.php |- inc2.php OK With PHP 4.2.1, works OK. With 4.3.0, I get: Failed opening '/inc/inc2.

[PHP] Re: How to check for refresh in PHP

2003-02-04 Thread Goetz Lohmann
Pag schrieb: > > Hi, > > I have a news site where i want to track how many "visits" or reads > each individual news has. I have a main list with all the titles, then > clicking on them shows the details of the specific news, only then the > counter for that particular news is increase

Re: [PHP] PHP Sessions Not Saving

2003-02-04 Thread Jonathan Wright
At around Tue, Feb 04, 2003 at 02:06:35PM +0800, Jason Wong constructed the following notation: > > > > > > Recompile, why? How about a link? > > > > > > ln -s /sbin/sendmail /usr/sbin/sendmail > > > > During the ./configure part of the installation, PHP checks for > > sendmail, but only in /sbin

[PHP] Re: restricting acces to files

2003-02-04 Thread Goetz Lohmann
Shams schrieb: > Hi, > > i've written a secure PHP login script which will allow users to login to a > directory such as this: > > smezone.com/members/index.php > > however, how do I restrict people from accessing HTML files in that > directory (which they can easily do so by typing the URL into

[PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Ananth Kesari
Hi, I am working on porting PHP onto NetWare. At this point of time, I am trying to understand the way security is implemented for PHP on Unix / Linux. I mean, how are the different users distinguished from Unix / Linux. Do they get to login into the Unix / Linux system? Do they have separate dat

[PHP] Re: Make an MDB File on the Fly

2003-02-04 Thread hboyce
I have recently been investigating exporting data from MySQL database to use with MS Word mail merge. The mail merge will accept a text file with separators of tab or comma - should be easy to produce using PHP. Hilary On 3 Feb 2003 at 12:49, Matt Babineau wrote: > I have a client that cur

Re: [PHP] restricting acces to files

2003-02-04 Thread Jason Wong
On Saturday 01 February 2003 17:28, Shams wrote: > Hi, > > i've written a secure PHP login script which will allow users to login to a > directory such as this: > > smezone.com/members/index.php > > however, how do I restrict people from accessing HTML files in that > directory (which they can easi

[PHP] restricting acces to files

2003-02-04 Thread Shams
Hi, i've written a secure PHP login script which will allow users to login to a directory such as this: smezone.com/members/index.php however, how do I restrict people from accessing HTML files in that directory (which they can easily do so by typing the URL into their browser), such as: smezon

Re: [PHP] Re: Etiquette

2003-02-04 Thread Götz Lohmsnn
Luke Woollard schrieb: > Chill out. It's only PHP programming. > :) > > > -Original Message- > From: Philip Olson [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 4 February 2003 2:56 PM > To: Chris Shiflett > Cc: Sunfire; Todd Barr; [EMAIL PROTECTED] > Subject: [PHP] Re: Etiquette > > > On

Re: [PHP] safe mode problem

2003-02-04 Thread Marek Kilimajer
I recomend you use ftp functions to upload the script to your site (from the generating file). If you only use normal filesystem function, the newly created file will get the owner of the http server. gurvinder singh wrote: and how can i be root from a php script? i want chown from the script

[PHP] Re: Socket error connecting to mySQL

2003-02-04 Thread Götz Lohmsnn
Bryan Lipscy schrieb: > $db= @mysql_pconnect ( $DB_HOST , $DB_USER , $DB_PASS ); > @mysql_select_db ( $DB_DB ) or die ( "DATABASE ERROR!".mysql_error() ); > > Returns DATABASE ERROR!Can't connect to local MySQL server through > socket '/tmp/mysql.sock' (2) > > MySQL server exists on a Win2ksp3 b

Re: [PHP] How to compare 2 strings

2003-02-04 Thread Krzysztof Dziekiewicz
> How to compare 2 strings in PHP > I hawe 2 array where I have only string values some values in both arrays > are same but if command don't send me a good result. > e.g > foreach ($array1 as $a1) { > foreach($array2 as $a2){ >if ($a1 == $a2) echo "good"; //never system send me a good res

Re: [PHP] Which link was selected?

2003-02-04 Thread Götz Lohmsnn
Leonard Burton schrieb: > Greetings, > > You ought to make your link something like > www.foo.com/products.php?autoid=105. and then make a query on your page > that displays the pics based on an autoincrement number in your table. > > You ought to be able to make the code something like: > > //

[PHP] Re: Which link was selected?

2003-02-04 Thread Götz Lohmsnn
Karina S schrieb: > Hi, > > I put pictures from a database ont the page about my products. If the user > click on a picture I want to give a detailed description about the product. > But how can I get, which picture was selected? > > Thanks > > if your images are named like PicNr000.png, PicNr

Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-04 Thread Krzysztof Dziekiewicz
> That's right, but with curl it's not a true redirection: you just print the content >of the target page, you don't redirect to the page. > What I need is "automated forms", that send the same data as forms but without user >interaction. > I can't use javascript to automatically send a form.

[PHP] php3 + HTTP_POST_FILES

2003-02-04 Thread electroteque
is there a way to get this variable in php3 for some reason i cannot acess it ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Socket error connecting to mySQL

2003-02-04 Thread Nick Kordas -: Wildthing Communications
Hi I think that you mysql server on your Win box is set to only connect from localhost and not from an outside host which is what its trying to do. - Regards Nick Kordas BE(hons) Ph.D(usyd) Wildthing Communications PH: 07 5481 6064 Mob: 0421 556847 IC

Re: [PHP] Socket error connecting to mySQL

2003-02-04 Thread Jason Wong
On Friday 21 February 2003 15:49, Bryan Lipscy wrote: > $db= @mysql_pconnect ( $DB_HOST , $DB_USER , $DB_PASS ); > @mysql_select_db ( $DB_DB ) or die ( "DATABASE ERROR!".mysql_error() ); > > Returns DATABASE ERROR!Can't connect to local MySQL server through > socket '/tmp/mysql.sock' (2) > > MySQL

<    1   2