[PHP] crypting a database

2001-04-27 Thread Augusto Cesar Castoldi
Hi, Anyone have some function to crypt and text then decrypt? regards, Augusto Cesar Castoldi -- 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

Re: [PHP] php4 on RedHat 7.1

2001-04-27 Thread j2n tech
""Peter H. Lemieux"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Take a look at /var/log/httpd/error_log. Is there an entry for the very > first time the server was run (before you installed PHP 4.04pl)? Does > it list PHP/4.0 as installed? The initial e

[PHP] MP3

2001-04-27 Thread Rafael Faria
Have some way to make a script to get the info of mp3 file? like ID3 tag? --- [ r a f a e l f a r i a] _ [EMAIL PROTECTED] WebMaster Universo Online - http://www.uol.com.br Phone # +55 11 3038-8665 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

RE: [PHP] MP3

2001-04-27 Thread PHPBeginner.com
I've seen some on hotscripts.com, sourceforge.net (more chances) Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Rafael Faria [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 2

Re: [PHP] HELP!! Mail and attachments

2001-04-27 Thread Chris Anderson
I would recommend that you send a link instead of the actual doc file. Chris Anderson aka "Null" PHP Developer / Nulltech PHP-GTK Tester / gtk.php.net STA Administrator / www.stronger.org DOD Co-Owner / www.dayofdefeat.com - Original Message ---

Re: [PHP] HELP!! Mail and attachments

2001-04-27 Thread Tym Rehm
I have to send the file. I need the recipient to fill out the form. - Original Message - From: "Chris Anderson" <[EMAIL PROTECTED]> To: "Tym Rehm" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, April 27, 2001 10:16 AM Subject: Re: [PHP] HELP!! Mail and attachments > I would reco

[PHP] exclusive execution

2001-04-27 Thread Nikhil Goyal
I need to set up a script such that only one instance of it is running at a time i.e. in case the script is already executing, it will not be started again. My problem is on a script taking a long time to execute (like it should) - I find that for some reason the script stops somewhere in the mid

[PHP] Win Apache/PHP config triping up virtual directory

2001-04-27 Thread Mike Gifford
Hello, I have been working to develop the Back-end CMS on Sourceforge: https://sourceforge.net/projects/back-end/ I'm running into a bit of a difficulty though folks trying to run the code in a windows environment. To get around the problem with search engines tripping over the ?'s the

[PHP] Is PHP code software?

2001-04-27 Thread Kath
Food for thought: Is PHP code software? - Kath

Re: [PHP] exclusive execution

2001-04-27 Thread John Donagher
One solution would be to have the script write it's process ID in some .pid file. Since a process ID is per instance of the script, this should provide you with the functionality you're looking for. John On Fri, 27 Apr 2001, Nikhil Goyal wrote: > I need to set up a script such that only one in

Re: [PHP] Is PHP code software?

2001-04-27 Thread Chris Anderson
If it is being sold for profit it is. Chris Anderson aka "Null" PHP Developer / Nulltech PHP-GTK Tester / gtk.php.net STA Administrator / www.stronger.org DOD Co-Owner / www.dayofdefeat.com - Original Message - From: "Kath" <[EMAIL PRO

Re: [PHP] Is PHP code software?

2001-04-27 Thread Kath
What makes something done for free (Say Linux or something infinitely smaller, the forums I am writing) not software? Isn't freeware a form of software? - Kath - Original Message - From: "Chris Anderson" <[EMAIL PROTECTED]> To: "Kath" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Frida

[PHP] How to chop off a char off end?

2001-04-27 Thread Dexter
Using Perl , I usually say $string=~s /,$//; to chop off a particualr char on end. How do you do this using PHP. Thanks, Dexter

Re: [PHP] exclusive execution

2001-04-27 Thread Nikhil Goyal
sounds like a good idea. how to I get the process id? "John Donagher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > One solution would be to have the script write it's process ID in some .pid > file. Since a process ID is per instance of the script, this sh

Re: SV: [PHP] PHP Book?

2001-04-27 Thread eschmid+sic
On Fri, Apr 27, 2001 at 08:06:54PM +0200, Christian Reiniger wrote: > On Friday 27 April 2001 15:15, Johan Holst Nielsen wrote: > > > Hey everyone... > > > > > > I've been programming in perl for about 3 years now, i have installed > > > php and have been working on it for about three weeks. I sta

RE: [PHP] How to chop off a char off end?

2001-04-27 Thread Matthew DeChant
$x = "yourtexthere."; $x = substr($x, 0, -1); $x will then equal = "yourtexthere" -m -Original Message- From: Dexter [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 6:45 PM To: [EMAIL PROTECTED] Subject: [PHP] How to chop off a char off end? Using Perl , I usually say $stri

Re: [PHP] exclusive execution

2001-04-27 Thread Nikhil Goyal
ok i got getmypid() Extending the same concept, is it possible for ANOTHER script to check whether this script has completed execution or is still running? N "John Donagher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > One solution would be to have the s

Re: SV: [PHP] PHP Book?

2001-04-27 Thread Christian Reiniger
On Friday 27 April 2001 22:53, [EMAIL PROTECTED] wrote: > > > Try "Core PHP Programmning", it's have a lot of good stuff! > > > > That book is definitely the wrong choice for someone with 3 years > > perl experience (perhaps unless there's a second edition). The copy > > I unfortunately bought i

Re: [PHP] Is PHP code software?

2001-04-27 Thread Christian Reiniger
On Friday 27 April 2001 22:29, Kath wrote: > Food for thought: Is PHP code software? Sure. Software is... "instructions that tell a computer what to do. Software comprises the entire set of programs, procedures, and routines associated with the operation of a computer system. The term was coin

Re: SV: [PHP] PHP Book?

2001-04-27 Thread eschmid+sic
On Sat, Apr 28, 2001 at 12:01:22AM +0200, Christian Reiniger wrote: > On Friday 27 April 2001 22:53, [EMAIL PROTECTED] wrote: > > > > > Try "Core PHP Programmning", it's have a lot of good stuff! > > > > > > That book is definitely the wrong choice for someone with 3 years > > > perl experience (

Re: SV: [PHP] PHP Book?

2001-04-27 Thread Alex Piaz
Hi All! One of the best books on PHP that I ever read is "Web Application Development with PHP 4.0" from New Riders. It is an advanced book, not recomend it for beginners, but the medium/advanced skill programmer will love it. THat's my 10 reais (brazillian money):-) []'s Alex Piaz Webma

php-general Digest 27 Apr 2001 22:42:18 -0000 Issue 653

2001-04-27 Thread php-general-digest-help
php-general Digest 27 Apr 2001 22:42:18 - Issue 653 Topics (messages 50591 through 50703): Re: Problem with the HTTP_REFERER 50591 by: Geir Eivind Mork 50599 by: Rosen 50600 by: Simon Ould please help! 50592 by: kaab kaoutar Re: What's wrong with Apache + p

Re: [PHP] online site builder

2001-04-27 Thread Godd
Well I am working on just such a project now. Mine is a bit more complex than just the simple page. I am working on actually building a site that allows you to build a dynamic site. So you will be able to make tables in a database and use these tables to build query and tables and all sorts of thi

[PHP] Strange Question - Please Read This

2001-04-27 Thread Chris Anderson
Does anyone know how to place code into every file accessed on my server? Kindof like how geocities and countless other hosts manage to add their banners? Chris Anderson aka "Null" PHP Developer / Nulltech PHP-GTK Tester / gtk.php.net STA Admini

[PHP] Why is this?

2001-04-27 Thread Manesh
CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: -- 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 a

Re: [PHP] line break part2

2001-04-27 Thread Dddogbruce \(@home.com\)
$string = nl2br($string) This will change a new line into ; but make sure HTMLspecialchars aren't in the same part. -- 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,

[PHP] [NEWBIE] :P

2001-04-27 Thread Dddogbruce \(@home.com\)
Hi. I'm writing a new script, but I need some help.. I won't post here because it's just too much. I'm looking for someone who is dedicated and patient in helping a 13 year old with SQL and connecting/recieving, inserting and updating databases. I have ideas, I have some basic knowledge of PHP

Re: [PHP] Strange Question - Please Read This

2001-04-27 Thread Zak Greant
Set the auto_append_file or auto_prepend_file in the php.ini file. See http://www.php.net/manual/en/configuration.php for more details --zak - Original Message - From: "Chris Anderson" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Friday, April 27, 2001 11:50 AM Subject: [PHP]

[PHP] include whole directories?

2001-04-27 Thread andrew
Is there any way to include whole directories? I have my function declarations in many small, easily maintainable files, but it's a pain to include/require them all individually...I would like to just split them into directories by common purpose, e.g functions/auth functions/content function

[PHP] undefined symbol: SSL_CTX_set_rsa_callback

2001-04-27 Thread j2n tech
After compiling php404pl1 and Apache 1.3.12: [root@ conf]# ../bin/apachectl restart ../bin/apachectl restart: httpd not running, trying to start Syntax error on line 207 of /var/www/conf/httpd.conf: Cannot load /var/www/libexec/libphp4.so into server: /var/www/libexec/libphp4.so: undefined symbol

Re: SV: [PHP] PHP Book?

2001-04-27 Thread Chris Anderson
A good book for a beginner is "The PHP 4 Bible" Chris Anderson aka "Null" PHP Developer / Nulltech PHP-GTK Tester / gtk.php.net STA Administrator / www.stronger.org DOD Co-Owner / www.dayofdefeat.com - Original Message - From: "Alex Pia

RE: [PHP] Can I install Lihnux on My Windows 95 machine ?

2001-04-27 Thread Valter Santos
Of course you can run both win95 and linux in the same machine! You can install linux on your F: drive and run a OS loader such Lilo at startup (lilo is installed with your linux distribution)! Go ahead... install Linux!!! BTW, there is a Apache version for Windows! ..

Re: [PHP] include whole directories?

2001-04-27 Thread Erica Douglass
Sure. Use an array, as suggested in the example on the include manual page, but put all files in a specific directory in that array. To do that, use code like the following: # load files into array # assign $directory to your variable, or replace $directory in the below line with the directory yo

[PHP] Find and Replace script: Content Stripper; recursive subdirectories; ereg_replace, preg_replace

2001-04-27 Thread Erica Douglass
I have created a content stripper file that I am releasing to this newsgroup as freeware. The file takes a .html file that looks like this: _ HEADER _ CONTENT _ FOOTER _ and strips out the header and footer according to certain del

[PHP] count() problem :D

2001-04-27 Thread Chris Schneck
hey all, this is my first message to this group, im gonna print it out :) anywho, im having problems getting data out of the count() function i've implemented, could anyone lend a hand? $query = "select count(fld_gender) from tbl_survey"; how exactly is it that you output data r

[PHP] RE: What is this??

2001-04-27 Thread Manesh
I need a free web server that gives me 1 Myslq accound and php hoasting! if soneone know of any please tell me. thx -- 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

[PHP] Sorry, wrong sebject :)

2001-04-27 Thread Manesh
I need a free web server that gives me 1 Myslq accound and php hoasting! if soneone know of any please tell me. thx -- 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 administra

Re: [PHP] Sorry, wrong sebject :)

2001-04-27 Thread Steven Haryanto
At 4/27/2001 07:35 PM, Manesh wrote: >I need a free web server that gives me 1 Myslq accound and php hoasting! if >soneone know of any please tell me. > >thx search php knowlegde base at www.faqts.com, you'll find a bunch of such links there. -- sh -- PHP General Mailing List (http://www

[PHP] xslt_set_scheme_handler()

2001-04-27 Thread Heino H. Gehlsen
Would somebody be so kind and tell us how to use the xslt_set_scheme_handler() function ? Heino H. Gehlsen

[PHP] Database

2001-04-27 Thread Manesh
How do i make table, just a simple one called sympoll_auth -- 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] phpwebsite

2001-04-27 Thread Manesh
I got this from a site, and how do i set up the mail fetures? -- 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] phpwebsite

2001-04-27 Thread Brian Clark
Hi Manesh, @ 12:07:05 AM on 4/28/2001, Manesh wrote: > I got this from a site, and how do i set up the mail fetures? Got what from a site? Which mail features? -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://www.

[PHP] tester needed for phpMyMultiBackup

2001-04-27 Thread idban secandri
Just releasing phpMyMultiBackup; a php scripts that can backup MySQL database(s) from many server(s) i need more tester, scripts can d/l from http://phpklik.dhs.org/phpmymultibackup/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

[PHP] Where is php.ini located by default?

2001-04-27 Thread Martin Skjöldebrand
I've built php from a tarball. Now I need to specify a special include path in the php.ini file. But I can't find it. There is a php.in-dist in the build catalog but I can't find a production php.ini anywhere. The docs says that it should be in the install catalogue (which is where?, /usr/local

Re: [PHP] Where is php.ini located by default?

2001-04-27 Thread idban secandri
On Saturday 28 April 2001 00:37, you wrote: > I've built php from a tarball. Now I need to specify a special include path > in the php.ini file. But I can't find it. There is a php.in-dist in the > build catalog but I can't find a production php.ini anywhere. > The docs says that it should be in t

Re: SV: [PHP] PHP Book?

2001-04-27 Thread Martin Skjöldebrand
[EMAIL PROTECTED] wrote: > On Fri, Apr 27, 2001 at 08:06:54PM +0200, Christian Reiniger wrote: >> On Friday 27 April 2001 15:15, Johan Holst Nielsen wrote: >> > > Hey everyone... >> > > >> > > I've been programming in perl for about 3 years now, i have installed >> > > php and have been working o

Re: [PHP] count() problem :D

2001-04-27 Thread Chris Adams
On 27 Apr 2001 19:50:04 -0700, Chris Schneck <[EMAIL PROTECTED]> wrote: >anywho, im having problems getting data out of the count() function i've >implemented, could anyone lend a hand? > >$query = "select count(fld_gender) from tbl_survey"; > >how exactly is it that you output dat

RE: [PHP] Where is php.ini located by default?

2001-04-27 Thread PHPBeginner.com
/usr/lib/php is the default configuration... if I am not worng... 'cause I have some memory leaks recently :-) have you tried : # locate php.ini # locate php.ini-dist while on windows it should be located in WINNT directory (on NT/2K). It will ask YOU to move them there during the installation.

RE: [PHP] [NEWBIE] :P

2001-04-27 Thread PHPBeginner.com
Hi Owen, newbies are always welcome here (as long as you mention it). See, we developers, are often too bored answering the complicated questions. But if you ask something like: "what is the syntax for update" you'll get dozens of replies. don't try on mySQL lists, I noticed that they are kind o

Re: [PHP] Where is php.ini located by default?

2001-04-27 Thread Chris Fry
It's /usr/local/lib/php.ini Chris "PHPBeginner.com" wrote: > /usr/lib/php > is the default configuration... if I am not worng... 'cause I have some > memory leaks recently :-) > > have you tried : > # locate php.ini > # locate php.ini-dist > > while on windows it should be located in WINNT dire

RE: [PHP] Where is php.ini located by default?

2001-04-27 Thread PHPBeginner.com
true, true... m -Original Message- From: Chris Fry [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 28, 2001 2:23 PM To: PHPBeginner.com Cc: Martin Skjoldebrand; [EMAIL PROTECTED] Subject: Re: [PHP] Where is php.ini located by default? It's /usr/local/lib/php.ini Chris "PHPBeginner.

RE: [PHP] count() problem :D

2001-04-27 Thread Joe Sheble \(Wizaerd\)
Alias the count() $query = "select count(fld_gender) s sumField from tbl_survey"; $result = mysql_query( $query, $dbConnection ); $aRow = mysql_fetch_array( $result ); print( $aRow["sumField"] ); Joseph E. Sheble a.k.a. Wizaerd Wizaerd's Realm Canvas, 3D, Graphics, ColdFusion, PHP, and mySQL ht

Re: [PHP] Where is php.ini located by default?

2001-04-27 Thread Erica Douglass
If I'm not mistaken, the "locate" command uses a cache which is only updated every 24 hours or so. You can either recreate locate's cache by reading locate's man pages, or you can actually search the filesystem by using the following commands: cd / (go to the root directory) find . -name php.ini

Re: [PHP] Where is php.ini located by default?

2001-04-27 Thread Martin Skjöldebrand
idban secandri wrote: > On Saturday 28 April 2001 00:37, you wrote: >> I've built php from a tarball. Now I need to specify a special include >> path in the php.ini file. But I can't find it. There is a php.in-dist in >> the build catalog but I can't find a production php.ini anywhere. >> The doc

Re: [PHP] undefined symbol: SSL_CTX_set_rsa_callback

2001-04-27 Thread Dean Hall
""j2n tech"" <[EMAIL PROTECTED]> wrote in message 9cd2bn$55m$[EMAIL PROTECTED]">news:9cd2bn$55m$[EMAIL PROTECTED]... > After compiling php404pl1 and Apache 1.3.12: > > [root@ conf]# ../bin/apachectl restart > ../bin/apachectl restart: httpd not running, trying to start > Syntax error on line 207 o

[PHP] dynamically adding rows to same form.

2001-04-27 Thread Rahul Bhide
Gurus , Problem : my php form has a 4 text field with one row . I want to put an "add another row" button at the end of the row such that clicking will bringup the previous row as well as add a new row below it for further input of data . let me know , thanks and regards, ~Rahul -- PHP Gener

[PHP] Extracting the body of the http request entity?

2001-04-27 Thread nik
I need to write a script which extracts information POSTed by a non-browser client, and stores it on the server. With a browser client I could upload from with form elements and use the PHP upload functions, but using a browser at the client end is not an option here. According to the w3c docs

Re: [PHP] What's wrong with Apache + php + mysql on Windows?

2001-04-27 Thread nik
> Hello, I can't understand the reason apache server running locally on my > Win98 machine delays so much to respond browser when accesing php > scripts in the form > > http://localhost/myscript.php > > When I transfer php scripts to host server via FTP, script execution is > immediate, even remot

RE: [PHP] How to execute a php scripts

2001-04-27 Thread Henning Kilset Pedersen
Bertrand, if you're serious about trying to get help for something, it would be very helpful if you ask a more specific question, with code samples of what you've done so far. There are excellent tutorials on this subject, at http://www.phpbuilder.com, http://www.phpbeginner.com, http://www.zend

<    1   2