[PHP] An important, urgent question about classes?

2002-01-15 Thread Sait Karalar
Hi all, I need to learn something about classes in PHP, that I could not understand what's going on really!? For the following sample, what kind of class i need to create? how can i use? For example, I have X students X: from

[PHP] Re: I18n problems: Working with double-byte languages

2002-01-15 Thread Yasuo Ohgaki
Ricardo Junior wrote: Hi people ! I have a query regarding double-byte languages on PHP. I need to sort a index localized from English to Korean. My idea is: * get the Korean strings from file; * convert them to UTF8; * insert them in a Oracle database set to work with

php-general Digest 15 Jan 2002 09:11:04 -0000 Issue 1112

2002-01-15 Thread php-general-digest-help
php-general Digest 15 Jan 2002 09:11:04 - Issue 1112 Topics (messages 80493 through 80525): Re: strtok bug 80493 by: Manuel Lemos Re: override [EMAIL PROTECTED] 80494 by: Vlasyuk Valera Re: Setting up an XML platform/website 80495 by: Geoff Caplan 80496

Re: [PHP] An important, urgent question about classes?

2002-01-15 Thread [EMAIL PROTECTED]
If you can't figure how to make your class work, send us your code so far, we'll tell what's wrong. For an example class just look at the manual. For more info on OO programming in PHP go to one of the many tutorial sites, for example http://phpbuilder.com . You can register any type of

Re: [PHP] Mysql

2002-01-15 Thread [EMAIL PROTECTED]
When you got your CREATE TABLE statement ready, run it from a PHP script, just like you would with any other query. Ofcourse you need to use a login that is able to 'create'. bvr. On Tue, 15 Jan 2002 03:46:47 +0300, -=LukA=- wrote: Hello php-general, Hi everybody Please help me. If

Re: [PHP] Re: SMS

2002-01-15 Thread Jon Farmer
You may want to look into this. http://phpclasses.upperdesign.com/browse.html/package/396 Except web - SMS gateways are increasing becoming a unreliabe way to send SMS. I know in the UK some of the mobile networks are blocking certain gateways as they are increasingly being used for spam and

Re: [PHP] SMS

2002-01-15 Thread Jon Farmer
Hi everyone! I'd be grateful if someone could please tell me a link where I can find a good tutorial on how to develop a SMS tool with PHP, or if somebody has already developed something like it, or if there are any experts around, please give me some information about it. Can you be more

[PHP] Overriding php.ini at runtime

2002-01-15 Thread Daniel Grace
I'm using the PHP CGI (4.1.0) with Apache (1.3.22) (would rather use the module, but have a setup that requires suEXEC and the like and I've hacked a few things together to make things work and all that.) and have came up with a bit of a dilemma. I need a way to override the php.ini file at page

[PHP] RE: checkboxes vs text filed array and hidden variables

2002-01-15 Thread Tim Ward
Sounds to me like your problem is that only the checkboxes that are checked are passed back. e.g. for ($I = 1; $I = 10; $I++) { echo(tr); echo(tdinput type='text' name='textfield[]' value=''/td); echo(tdinput type='checkbox' name='cbox[]' value='$i'/td); echo(/tr); }

Re: [PHP] Including a file using php //

2002-01-15 Thread [EMAIL PROTECTED]
I don't think you can return a value like this. You should either define a function within your include which could be called from your page or set a variable within your include that contains the result, this variable will be available as if the include() statement was replace by the code in

Re: [PHP] Including a file using php //

2002-01-15 Thread louie miranda
So u mean like this? ?php include('http://192.168.129.103/noc/chikkaps.txt'); ? Only?, Im not good with this, can you give me some samples? thanks, louie... - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; louie miranda [EMAIL PROTECTED] Sent: Tuesday, January 15,

Re: [PHP] beginer | SQL PHP Tutorial/Training

2002-01-15 Thread TD - Sales International Holland B.V.
On Sunday 13 January 2002 18:32, you wrote: For all you out there just getting started, on the MySQL site there is atleast I training I know of, I haven't checked there in a while and you might find some others there now too. Anyways, the one I read, and pretty much liked as it will give you

[PHP] RE: PHP array or SQL problem

2002-01-15 Thread Tim Ward
An option is to create a sortfield in your query, something like SELECT *, CONCAT(nickname, fname) AS sortfield FROM ORDER BY sortfield. I'm assuming MySQL and haven't actually tested this. You may need to check the sql documentation for some of the details. Tim www.chessish.com

[PHP] Re: PHP array or SQL problem

2002-01-15 Thread Daniel Grace
Dean Householder [EMAIL PROTECTED] wrote in message 007301c19d97$21968660$d5246541@daylightcreations">news:007301c19d97$21968660$d5246541@daylightcreations... I've got a database with lname (lastname), fname (firstname), and nickname. What I want to do is search by either first name or last

Re: [PHP] Overriding php.ini at runtime

2002-01-15 Thread Jason Wong
On Tuesday 15 January 2002 17:24, Daniel Grace wrote: I'm using the PHP CGI (4.1.0) with Apache (1.3.22) (would rather use the module, but have a setup that requires suEXEC and the like and I've hacked a few things together to make things work and all that.) and have came up with a bit of a

Re: [PHP] PHP array or SQL problem

2002-01-15 Thread Dean Householder
Thanks so much!! You guys rock! Dean - Original Message - From: Dean Householder [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:34 AM Subject: [PHP] PHP array or SQL problem I've got a database with lname (lastname), fname (firstname), and nickname. What

Re: [PHP] Overriding php.ini at runtime

2002-01-15 Thread Daniel Grace
Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... On Tuesday 15 January 2002 17:24, Daniel Grace wrote: Is there an equivalent to the php_ini directive available for the CGI version Some settings in php.ini can be changed at run-time using ini_set(). Check

Re: [PHP] Including a file using php //

2002-01-15 Thread Henning Sprang
louie miranda wrote: So u mean like this? ?php include('http://192.168.129.103/noc/chikkaps.txt'); ? Only?, Im not good with this, can you give me some samples? do you want to include the code in that file or read the content? include is used to include code for execution, if

[PHP] Including a REMOTE FILE using include (php function)

2002-01-15 Thread louie miranda
Im trying this little example of mine, Im trying to include a file from a remote webserver but could not possibly get it to work.. Here is the written code: ### A WORKING CODE // LOCAL FILE ?php $file = one.php; include($file); ? ### ### DID NOT WORK // REMOTE FILE ?php $file =

Re: [PHP] Including a file using php //

2002-01-15 Thread louie miranda
Read the content I mean, echo it on the browser.. - Original Message - From: Henning Sprang [EMAIL PROTECTED] To: louie miranda [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 6:32 PM Subject: Re: [PHP] Including a file using php // louie

[PHP] parser

2002-01-15 Thread Sandeep Murphy
hi, I have a PHP script which sends a authorisation request to a Servlet and receives a response in XML format. I have also created a parser (using both DOM as well as SAX) for parsing the output. My problem: The parser takes in input from an external xml file but the output from the servlet

Re: [PHP] parser

2002-01-15 Thread Jon Farmer
My problem: The parser takes in input from an external xml file but the output from the servlet needs to be dynamically fed into the parser something like this: Err no you can feed a XML string to the parser. So capture the XML output from the servlet into a string, clean it up if it has any

[PHP] Search Engine

2002-01-15 Thread Yogesh Mahadnac
Hi all! I want to develop a search engine in PHP for a portal that I'm working on at the moment, and I'd be glad if someone could please show me how to do it, or if anyone knows of a link where i can find a tutorial for that. Thanks and regards, Yogesh Mahadnac

Re: [PHP] Overriding php.ini at runtime

2002-01-15 Thread Jason Wong
On Tuesday 15 January 2002 18:31, Daniel Grace wrote: Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... On Tuesday 15 January 2002 17:24, Daniel Grace wrote: Is there an equivalent to the php_ini directive available for the CGI version Some settings in

Re: [PHP] Search Engine

2002-01-15 Thread Jon Farmer
Hi all! I want to develop a search engine in PHP for a portal that I'm working on at the moment, and I'd be glad if someone could please show me how to do it, or if anyone knows of a link where i can find a tutorial for that. Use htdig -- Jon Farmer Systems Programmer, Entanet www.enta.net

Re: [PHP] Search Engine

2002-01-15 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 15-01-02 at 12:09 * Yogesh Mahadnac said Hi all! I want to develop a search engine in PHP for a portal that I'm working on at the moment, and I'd be glad if someone could please show me how to do it, or if anyone knows of a link

[PHP] Change column in mysgl

2002-01-15 Thread Jan Grafström
Hi! Can I change this column adress VARCHAR(25) to adress VARCHAR(40) afterwards. I use mysql. Thanks for any help Regards, Jan -- Jan Grafström Lillemans Hus AB Bredsäter 2091 87010 Älandsbro 0611-60920 070-6409073 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Including a file using php //

2002-01-15 Thread Henning Sprang
louie miranda wrote: Read the content I mean, echo it on the browser.. if you send a piece of code that supposedly doesn't do what you want I can't go and read the code to find out what you _really_ want to do. if the code did what you wanted you didn't need to send it. so it is useful for

[PHP] Re: Change column in mysgl

2002-01-15 Thread Henrik Hansen
[EMAIL PROTECTED] (Jan grafström) wrote: Hi! Can I change this column adress VARCHAR(25) to adress VARCHAR(40) afterwards. yes look here: http://www.mysql.com/doc/A/L/ALTER_TABLE.html -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] PHP x Mysql

2002-01-15 Thread Frederico Madeira
Tanks Vicent, but i found the problem. It was in the php.ini that was broken. I reinstall de PHP and after i reinstall php-mysql. After all the php with mysql work . Tanks. Fred On Sun, 2002-01-13 at 19:24, Vincent Stoessel wrote: Yeah, this smells like someone upgraded/recompiled php without

RE: [PHP] Change column in mysgl

2002-01-15 Thread Intruder
Can I change this column adress VARCHAR(25) to adress VARCHAR(40) afterwards. I use mysql. Thanks for any help RTFM ALTER TABLE... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

RE: [PHP] Compile problems php 4.1.1

2002-01-15 Thread Simon Ritchie
I'm trying to compile php 4.1.1 and when it gets to the --with-apxs option it errors out with the following: Sorry, I was not able to successfully run APXS. Possible reasons: 1. Perl is not installed; . . . Some systems (eg Red Hat Linux) come with a version of the apxs tool, but not the

[PHP] splitting up an array into lines ...

2002-01-15 Thread Neil Mooney
I want this code to work thru a large cluster and put the rpm information into a db , it all works apart from the foreach loop. why doesnt my code work ( in particular the foreach loop ) , // get hostname $host = `hostname`; // get a list of rpms $rpm_list = `rpm -qa`; // open a db

Re: [PHP] unable to copy and chmod

2002-01-15 Thread Edgard Berendsen
The probem is that when I copy the file, the owner is set to something that PHP lately can't change ! This happened to me in 2 tottaly different servers. I want to copy a file (as a template) and make it writable using PHP. [EMAIL PROTECTED] [EMAIL PROTECTED] wrote in message [EMAIL

Re: [PHP] splitting up an array into lines ...

2002-01-15 Thread Jason Wong
On Tuesday 15 January 2002 21:04, Neil Mooney wrote: I want this code to work thru a large cluster and put the rpm information into a db , it all works apart from the foreach loop. why doesnt my code work ( in particular the foreach loop ) , // get hostname $host = `hostname`; // get a

[PHP] Content

2002-01-15 Thread Daniel C. Sobral
I have a little problem I have been trying to solve, but so I haven't had any luck so far. A product we use sends an HTTP Post request when certain events happen. We want to write a script which will process this request and take certain actions. Unfortunately, Some of the data comes not as

[PHP] How to run sockets in Win32

2002-01-15 Thread Logan
I tried to use the socket function under PHP 4.0.6 in IIS 5 on a server with windows XP. It give me the error - Socket function not found in line 3 It's the socket implementation a package that i have to install??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] NNTP Indexing

2002-01-15 Thread Jonathan Chum
I'm in dire need of suggestions for reconstruction of a database that contains USENET posts from a few groups on the server. This is the structure: CREATE TABLE /*!32300 IF NOT EXISTS*/ nntp ( pid mediumint(10) NOT NULL auto_increment, aid mediumint(10) NOT NULL DEFAULT '0' , from_name

Re: [PHP] Content

2002-01-15 Thread Jimmy
Hi Daniel, variables, but as part of the Content of the HTTP request. Here is a sample: POST /~rafael/sms_mail/cliente.dcs.php?NotificationProtocolVersion=1.0.0.0ApplicationName=NPlexApplicationVersion=6.0.037RequestType=NewMsgRequestTime=01/15/2002%2014:08:23ServerType=email[EMAIL

Re: [PHP] Persistent Database Resources?

2002-01-15 Thread John Lim
Hi, Both PEAR DB/Cache and ADOdb database libraries support cacahed recordsets. See the PEAR sources and http://php.weblogs.com/adodb Rgds, John Nick Wilson [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On

Re: [PHP] Content

2002-01-15 Thread Martin Wickman
Jimmy wrote: Hi Daniel, variables, but as part of the Content of the HTTP request. Here is a sample: POST

[PHP] Setting cookie very broken! Please help!

2002-01-15 Thread Casey Allen Shobe
I've set up a new machine in a production environment to roll over an existing PHP script onto. Unfortunately, I'm running into a strange error: I have a login form, using fields named 'username' and 'password'. These are also used as variables. Using IE, the cookie never shows up as I

[PHP] Redirection and Passing Data (arrays)

2002-01-15 Thread m. ali
hi may can some body help me I'm writing a shopping cart system where the user can search for a product. the search result is a page with number of items where the user can select some them using checkboxes and enter the quantity that he needs, then add them to his shopping cart this works

Re: [PHP] Content

2002-01-15 Thread Jimmy
Hi Martin, I dunno how to do that from the top of my head, but imo Daniels server is broken since POST variables are sent in the body, but that is clearly no POST request at all. In this case PHP has no way of parsing the broken request. Or am I wrong here? nope. in POST request, all the

[PHP] shopping cart reviews?

2002-01-15 Thread Jaxon
hi, can anyone point me at a set of reviews for various php-based shopping carts? cheers, jaxon -- 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

Re: [PHP] Re: SMS

2002-01-15 Thread Manuel Lemos
Hello, Jon Farmer wrote: You may want to look into this. http://phpclasses.upperdesign.com/browse.html/package/396 Except web - SMS gateways are increasing becoming a unreliabe way to send SMS. I know in the UK some of the mobile networks are blocking certain gateways as they are

Re: [PHP] Content

2002-01-15 Thread Daniel C. Sobral
Jimmy wrote: Hi Daniel, variables, but as part of the Content of the HTTP request. Here is a sample: POST

Re: [PHP] Padding with mcrypt_generic

2002-01-15 Thread Ben Sinclair
That would work for me, but I have to deal with many files that I have already encrypted and no longer know the correct sizes of. My search and replace for the padding characters doesn't work because the files sometimes contain those padding characters. -- Ben Sinclair [EMAIL PROTECTED] -

Re: [PHP] Setting cookie very broken! Please help!

2002-01-15 Thread Casey Allen Shobe
The server is not the client. I've tried the same code on two different servers, browing with various versions of IE, Netscape, Mozilla, and Konqueror. However, I can live with this, because I put the beta version (a rewrite) of the code on the new webserver, and it works. I find it very

[PHP] Re: Redirection and Passing Data (arrays)

2002-01-15 Thread Julio Nobrega Trabalhando
session_register('array_of_selected_checkboxes'); Just use sessions! ;-) -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca Ajudei? Salvei? Que tal um presentinho? http://www.submarino.com.br/wishlistclient.asp?wlid=664176742884 M. Ali [EMAIL PROTECTED] wrote in

Re: [PHP] Content

2002-01-15 Thread Rasmus Lerdorf
Grab the latest version of PHP. There is a new php.ini directive called always_populate_raw_post_data which when turned on forces all post data to be available through the $HTTP_RAW_POST_DATA variable. -Rasmus On Tue, 15 Jan 2002, Daniel C. Sobral wrote: I have a little problem I have been

RE: [PHP] Change column in mysgl

2002-01-15 Thread Rick Emery
ALTER TABLE mytable CHANGE COLUMN adress VARCHAR(40); -Original Message- From: Jan Grafström [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 5:11 AM To: [EMAIL PROTECTED] Subject: [PHP] Change column in mysgl Hi! Can I change this column adress VARCHAR(25) to adress

[PHP] Login script, session problem (I think)

2002-01-15 Thread Hawk
I made a simple login script which uses MySQL for username and password retrieval and that stores the username in a session, the problem is that this script only works locally, e.g. I can only login from this computer but not from any other, I have session.use_cookies = 1 and I also have another

RE: [PHP] Compile problems php 4.1.1

2002-01-15 Thread Rasmus Lerdorf
Redhat's apxs was broken years ago in RH 6.0 or some version like that. But since then the apxs from the apache-devel package has been fine. -Rasmus On Tue, 15 Jan 2002, Simon Ritchie wrote: I'm trying to compile php 4.1.1 and when it gets to the --with-apxs option it errors out with the

RE: [PHP] Change column in mysgl

2002-01-15 Thread Rick Emery
ALTER TABLE mytable CHANGE COLUMN adress VARCHAR(40); -Original Message- From: Jan Grafström [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 5:11 AM To: [EMAIL PROTECTED] Subject: [PHP] Change column in mysgl Hi! Can I change this column adress adress VARCHAR(25) to adress

Re: [PHP] How to run sockets in Win32

2002-01-15 Thread Andrew Brampton
I tried with PHP4 a while ago to use Sockets on Win32, unfortually I found written in the documenation saying that sockets were not implemented on Win32 yet. Andrew - Original Message - From: Logan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 2:22 PM Subject:

Re: [PHP] Login script, session problem (I think)

2002-01-15 Thread Dennis Moore
More information is needed... what version of PHP are your running? I bit of sample code on how you set up your sessions would also be helpful... /dkm - Original Message - From: Hawk [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 11:19 AM Subject: [PHP] Login

[PHP] Problems with PHP and SNMP

2002-01-15 Thread Giovanny Miguel Orozco Theran
Helo, we are a proyect that we need to link phap4.0.01 with ucd-snmp4.2.1 for start apache1.3.2 server, we compiling each module but to start the apache server it display the follow error. * # ./apachectl start Syntax error on line 205 of /usr/local/apache/conf/httpd.conf:

Re: [PHP] How to run sockets in Win32

2002-01-15 Thread Logan
I didnt try it, but i found this, in the compiled version of php4win 4.1.1 - php_sockets.dll, does it work??? Logan Andrew Brampton [EMAIL PROTECTED] escribió en el mensaje 03cc01c19de2$f1a90440$2528260a@STUDENT5830">news:03cc01c19de2$f1a90440$2528260a@STUDENT5830... I tried with PHP4 a while

[PHP] relative Drop Down Menus

2002-01-15 Thread Simos Varelakis
Hello to everyone In a submit form two relative drop down menus (dCountry and dCity) with data from two diferrent mysql tables. The form contains also some other fields ex name,surname etc. I want each time a user changes dCountry value to reload the same form without lose data from other

[PHP] PHP Creating GUID's in PHP 4.1.0

2002-01-15 Thread charlesk
Does anyone know how to create GUID's in PHP? Charles Killmer PHP 4.1.0 IIS 5 Windows 2000 Server -- 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

Re: [PHP] Re: Redirection and Passing Data (arrays)

2002-01-15 Thread Bogdan Stancescu
...or echo some hidden inputs in the login form? Julio Nobrega Trabalhando wrote: session_register('array_of_selected_checkboxes'); Just use sessions! ;-) -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca Ajudei? Salvei? Que tal um presentinho?

Re: [PHP] PHP Errors?

2002-01-15 Thread Ben Sinclair
It is possible to disable error reporting, but you would probably remember doing it. Another possiblity is your page having tables that are not closed because the script has stopped on an error, and your browser doesn't know how to render the page. View the source to the page, the error might be

Re: [PHP] Including a REMOTE FILE using include (php function)

2002-01-15 Thread Jimmy
Hi louie, Im trying this little example of mine, Im trying to include a file from a remote webserver but could not possibly get it to work.. could be because the url fopen wrapper is disabled. check the value of this setting in your php.ini file: allow_url_fopen -- Jimmy

Re: [PHP] Padding with mcrypt_generic

2002-01-15 Thread Joe Conway (wwc)
Ben Sinclair wrote: That would work for me, but I have to deal with many files that I have already encrypted and no longer know the correct sizes of. My search and replace for the padding characters doesn't work because the files sometimes contain those padding characters. -- Ben

[PHP] Re: Search Engine

2002-01-15 Thread Philip Hallstrom
Take a look at htdig and mngosearch (which has a PHP interface). Also take a look at www.devshed.com and search for search php and you'll find some how-to articles. On Tue, 15 Jan 2002, Yogesh Mahadnac wrote: Hi all! I want to develop a search engine in PHP for a portal that I'm working

[PHP] Compiling PHP with imap recode support

2002-01-15 Thread Mike Eheler
I get this error when compiling php with ./configure --with-imap=../imap-2001a --with-record Any ideas on a workaround for this? /web/src/imap-2001a/c-client/libc-client.a(misc.o): In function `hash_lookup': /web/src/imap-2001a/c-client/misc.c:311: multiple definition of `hash_lookup'

[PHP] Sound File Available???

2002-01-15 Thread Randum Ian
Hi there, is there a way of checking a directory for a sound file showing one image if its available, another if it isnt? The sound files are in directory http://www.foo.com/media and they are called 1234.rm. Can anybody help me pls? Cheers in advance, Ian. DJ / Producer / Webdesigner [EMAIL

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php listt

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] quit me off the php list

2002-01-15 Thread Thyago Consort
-Original Message- From: Adam Baratz [mailto:[EMAIL PROTECTED]] Sent: sexta-feira, 11 de janeiro de 2002 01:40 To: PHP List Subject: Re: [PHP] PHP Parsing Database Text Is it possible to have PHP parse text queried from a database (security issues notwithstanding)? If so, how?

[PHP] PHP image rollovers question...

2002-01-15 Thread Phil Schwarzmann
Hello, im brand new to the mailing list and fairly new to PHP. I apologize if this topic has come up before but...I'm having trouble embedding javascript (in particular - image rollovers) into my PHP script. When the page loads, I get errors for each of the javascript calls within my script.

[PHP] Re: Sound File Available???

2002-01-15 Thread Julio Nobrega Trabalhando
file_exists(); if (file_exists('1234.rm')) { // show one image } else { // show another image } Just correct the path of file_exists argument to the one you need/use. -- Julio Nobrega. Um dia eu chego lá: http://sourceforge.net/projects/toca Ajudei? Salvei? Que tal um presentinho?

Re: [PHP] PHP image rollovers question...

2002-01-15 Thread Jason Wong
On Wednesday 16 January 2002 02:02, Phil Schwarzmann wrote: Hello, im brand new to the mailing list and fairly new to PHP. I apologize if this topic has come up before but...I'm having trouble embedding javascript (in particular - image rollovers) into my PHP script. When the page loads, I

[PHP] User authentacation

2002-01-15 Thread sean
Hello, I need to allow a client, named: A, to give their clients access to a remote page on A's server. This is the problem: 1. I need to record who has accessed this page on A's server 2. password protect this page 3. and copy the pages contents to A's clients server. Any suggestions?

[PHP] Re: PHP image rollovers question...

2002-01-15 Thread Julio Nobrega Trabalhando
Check out when you can use and ' Any number of ' inside gets printed and $vars are parsed (i.e, 'interpreted by php') Any number of inside of ' gets printed and $vars are NOT parsed. echo script style=javascript; is wrong because you start at the first and the after the second you

Re: [PHP] quit me off the php list

2002-01-15 Thread Ben Turner
/Quit Thyago Consort :D Hey I tried! - Original Message - From: Thyago Consort [EMAIL PROTECTED] To: Adam Baratz [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:00 PM Subject: [PHP] quit me off the php list -Original Message- From: Adam

Re: [PHP] PHP image rollovers question...

2002-01-15 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * On 15-01-02 at 19:21 * Jason Wong said There's an error on line 24 of your code. Don't ask me how I know, I'm clairvoyant :) hint If you post your code then people who are not clairvoyant can also have a stab at helping you. /hint

[PHP] Re: Compiling PHP with imap recode support

2002-01-15 Thread Mike Eheler
Of course by --with-record I meant --with-recode Mike Mike Eheler wrote: I get this error when compiling php with ./configure --with-imap=../imap-2001a --with-record Any ideas on a workaround for this? /web/src/imap-2001a/c-client/libc-client.a(misc.o): In function `hash_lookup':

RE: [PHP] quit me off the php list

2002-01-15 Thread Chris Lott
The bottom of EVERY MESSAGE has instructions for removing yourself from the list. Please follow them. c -- Chris Lott -- http://www.chrislott.org/ -Original Message- From: Thyago Consort [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 10:01 AM To: Adam Baratz; PHP List

Re: [PHP] PHP Errors?

2002-01-15 Thread CC Zona
In article 01a601c19de8$adc1b050$5e01a8c0@ben, [EMAIL PROTECTED] (Ben Sinclair) wrote: It is possible to disable error reporting, but you would probably remember doing it. A call to phpinfo() to check the global and local settings for error_reporting and display_errors would be the first

[PHP] Reading File into Array and Searching

2002-01-15 Thread Devin Atencio
Dear Users, I basically want to do the following. I have file that contains everyone that logs into our mail server a day and then I want to basically load that file into an array and then search the array to find out how many times that person logged in and then take the last login and

[PHP] querying results already queryed once before

2002-01-15 Thread Phil Schwarzmann
Dumb question: How do I query results from a MySQL that I've already queried once before in the same page? Here is my code: // querying the database for the first time. $query = select * from table where thingA = $searchA; $result = mysql_query ($query); // now I want to query my results I

[PHP] Re: querying results already queryed once before

2002-01-15 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Phil Schwarzmann) wrote: Dumb question: How do I query results from a MySQL that I've already queried once before in the same page? Here is my code: // querying the database for the first time. $query = select * from table where thingA

Re: [PHP] Reading File into Array and Searching

2002-01-15 Thread Jason Wong
On Wednesday 16 January 2002 03:21, Devin Atencio wrote: Dear Users, I basically want to do the following. I have file that contains everyone that logs into our mail server a day and then I want to basically load that file into an array and then search the array to find out how many times

Re: [PHP] querying results already queryed once before

2002-01-15 Thread Erik Price
On Tuesday, January 15, 2002, at 02:18 PM, Phil Schwarzmann wrote: Dumb question: How do I query results from a MySQL that I've already queried once before in the same page? Look, buddy, *I* ask the dumb questions around here! Here is my code: // querying the database for the first

[PHP] sql question

2002-01-15 Thread Wolf-Dietrich von Loeffelholz
i want that a select query display me all words beginning with an a .. like select * from tbl_lit where lit_source = ‘c*’ .. thnx bSue

[PHP] PHP 4.1.1 and Mac OS X 10.1.2

2002-01-15 Thread Rodrigo Peres
Hi all, Does anyone have success in compiling PHP 4.1.1 in MacOS X 10.1.2? If yes, could please give some directions? After many tries I surrended miself and start using the pre compiled package that came with X. Thanks Rodrigo -- -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] PHP 4.1.1 and Mac OS X 10.1.2

2002-01-15 Thread Richard Baskett
Here's the page you want: http://www.entropy.ch/software/macosx/php/ Rick The only way to have a friend is to be one. - Ralph Waldo Emerson From: Rodrigo Peres [EMAIL PROTECTED] Date: Tue, 15 Jan 2002 18:14:12 -0200 To: PHP [EMAIL PROTECTED] Subject: [PHP] PHP 4.1.1 and Mac OS X 10.1.2

[PHP] problems with snmp and php

2002-01-15 Thread Giovanny Miguel Orozco Theran
Hello, we are a proyect that we need to link php4.0.6 with ucd-snmp4.2.1 for start apache1.3.2 server, we compiling each module but to start the apache server it display the follow error. # ./apachectl start Syntax error on line 205 of /usr/local/apache/conf/httpd.conf: Cannot load

RE: [PHP] sql question

2002-01-15 Thread Nathan Cassano
select * from tbl_lit where lit_source like 'c%'; Check out http://www.sqlcourse.com/ -Original Message- From: Wolf-Dietrich von Loeffelholz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 12:09 PM To: [EMAIL PROTECTED] Subject: [PHP] sql question i want that a select

[PHP] security benefits of predefined variables

2002-01-15 Thread Erik Price
Hi, I was hoping that someone could point me to a page or resource where I can find more information about using the predefined variables introduced in PHP 4.1.0. I read the release announcement (http://www.php.net/release_4_1_0.php), which is what called my attention to the potential

RE: [PHP] security benefits of predefined variables

2002-01-15 Thread Johnson, Kirk
Give this a read first, then come back if you still have questions ;) http://www.securereality.com.au/studyinscarlet.txt Kirk -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 1:50 PM To: PHP Subject: [PHP] security benefits of

[PHP] Another question - not exactly what i was looking for

2002-01-15 Thread Phil Schwarzmann
Yo, thanks for all your help. But it isn't exactly what im looking for. Let's say you had a database with the following four columns... -LastName -FirstName -Age -Weight ...and you wanted a page that would allow a user to search for one or more of these fields within the database. It would

RE: [PHP] sql question

2002-01-15 Thread Mehmet Kamil ERISEN
Hi do you care about case sensitivity? Nathan Cassano [EMAIL PROTECTED] wrote: select * from tbl_lit where lit_source like 'c%'; Check out http://www.sqlcourse.com/ -Original Message- From: Wolf-Dietrich von Loeffelholz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002

  1   2   >