|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
Subject: php3 Digest 23 Apr 2000 16:57:46 -0000 Issue 1625
From: php3-digest-help
lists.php.netDate: Sun Apr 23 2000 - 11:57:46 CDT
- Next message: php3-digest-help
lists.php.net: "php3 Digest 24 Apr 2000 04:57:44 -0000 Issue 1626"
- Previous message: php3-digest-help
lists.php.net: "php3 Digest 23 Apr 2000 04:57:48 -0000 Issue 1624"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
php3 Digest 23 Apr 2000 16:57:46 -0000 Issue 1625
Topics (messages 87255 through 87287):
cookie
87255 by: "Toshihide Tony Nakamura" <tony
uickarate.com>
ld terminated with signal 11
87256 by: "Sergio A. Murillo" <sam
marrder.com>
Cookie again!
87257 by: "Toshihide Tony Nakamura" <tony
uickarate.com>
87259 by: Sterling Hughes <sterling
designmultimedia.com>
87260 by: "Toshihide Tony Nakamura" <tony
uickarate.com>
87266 by: "Toshihide Tony Nakamura" <tony
uickarate.com>
87267 by: "Rian" <ste94018
stttelkom.ac.id>
87270 by: "Toshihide Tony Nakamura" <tony
uickarate.com>
XML_SKIP_WHITE & XML_TAG_START
87258 by: Sterling Hughes <sterling
designmultimedia.com>
How to replace "First" instance of the matched pattern?
87261 by: "Ted Knudson" <tedk
cyberlink.com>
87262 by: Zak Greant <zak
freeimages.com>
Database Choice
87263 by: "Wizaerd" <wizaerd
wizaerd.com>
87264 by: Sterling Hughes <sterling
designmultimedia.com>
87265 by: Francisco Hernandez <xy0xy0
earthlink.net>
87276 by: "Mitch Vincent" <mitch
venux.net>
Cookie Problem
87268 by: ¤j¥ó Taikin <taikin
cheerful.com>
building a robot
87269 by: "SANIsoft" <tarique
nagpur.dot.net.in>
Oracle/MSSQL & PHP
87271 by: "Frank M. Kromann" <fmk
swwwing.com>
PHP3+MSSQL woes
87272 by: "Frank M. Kromann" <fmk
swwwing.com>
WEB DATABASES/LISTS - 30% TO 50% OFF - 10 DAYS ONLY--Adv.
87273 by: "Liu Ningjiang" <liuningj
yourtender.com>
WHAT IS THIS???
87274 by: Dieter Kneffel <data
wap4.com>
Query !
87275 by: "TV Karthick Kumar" <tvkarthick
mailops.com>
ODBC linux -> windows connect & php3 error
87277 by: "Jared" <jared
infinet.com>
====Please help!!!====
87278 by: Boaz Yahav <berber
netvision.net.il>
image file upload
87279 by: LowFreq <lowfreq
channel1.com>
UK PHP List
87280 by: David Elliott <DavidE
cavendish.com>
Problem running PHP 3.0.16 and Apache 1.3.9 on RedHat 6.1
87281 by: Peter Eddy <petere
bigfoot.com>
Hi, I'm new. + Query
87282 by: "Thomas Edison Jr." <thomasedisonjr
yahoo.com>
eregi_replace?
87283 by: "Vincent Driessen" <vinnie
dew.nl>
Shopping Cart without database
87284 by: "David Loke" <dihuei
theoikoses.com>
cron jobs for php apache compiled
87285 by: "Arnold Gamboa" <arnoldc.gamboa
mileuweb.com>
87287 by: "Kevin Beckford" <kbeckford
dgdgroup.com>
Simple question...
87286 by: llbishop
themail.com
Administrivia:
To subscribe to the digest, e-mail:
php3-digest-subscribe
lists.php.net
To unsubscribe from the digest, e-mail:
php3-digest-unsubscribe
lists.php.net
To post to the list, e-mail:
php3
lists.php.net
----------------------------------------------------------------------
attached mail follows:
Thanks, everyone!!
I have the book, but I couldn't find anything on cookie. I guess
I had to know that it was "setcookie".
I didn't realize that I was sending everything in HTML.
I apologize to people who felt uncomfortable. Sorry.
Thanks!!
Tony
attached mail follows:
Hi all!,
I've been triyn for some time now to compile php as an apache module but
always get the same error.
./configure --with-apxs=/usr/sbin/apxs --with-mysql --with-pgsql=/usr
--with-xml --with-sybase-ct=/root/sybase
--with-openssl=/root/openssl-0.9.5a
I always get an error when the Makefile invokes the apxs script! The error
is:
collect2: ld terminated with signal 11 [Segmentation Fault], core dumped
So I got with the static module compilation
./configure --with-apache=/root/apache_1.3.12 etc....
make
make install
All goes well so far...
When compling the apache server with these options
SSL_BASE=../openssl-0.9.5a RSA_BSE=../rsaref-20/local EAPI_MM=../mm-1.0.12
./configure --enable-module=ssl --with-layout=RedHat --enable-shared=ssl
--activate-module=src/modules/auth_mysql/libauth_mysql.a
--activate-module=src/modules/php3/libphp3.a
When the makefile reaches the php library it stops with the same error
collect2: ls terminated with signal 11 [Segmentation Fault]
CAN ANYONE PLEASE HELP!!!!
THANKS!
Sergio Murillo
attached mail follows:
I placed the setcookie() function at the top of the page, and
it's still complaining that it should be called before anything is outputted
to the browser. Do you have any ideas why?
Again and again, thanks in advance!
Tony
attached mail follows:
Toshihide Tony Nakamura wrote:
>
> I placed the setcookie() function at the top of the page, and
> it's still complaining that it should be called before anything is outputted
> to the browser. Do you have any ideas why?
>
> Again and again, thanks in advance!
>
> Tony
Make sure that your <?php tag is also at the top of the page, meaning
Correct:
---top of page---
<?php
setcookie(...);
?>
Incorrect:
---top of page---
<?php
setcookie(...);
?>
Sterling
sterling
designmultimedia.com
attached mail follows:
Thanks!
Well, actually, the problem was this:
The value of the cookie is actually retried by running a query, so
I cannot set the cookie at the top of the page. I am trying to use
JavaScript now because of this reason. I think JavaScript lets me
set the cookie wherever I want, but it just won't be in effect until
the next page is loaded. Hmmm... People don't fine this a bit
inconvenient??? I do now, but maybe I will learn the standard procedure
later.
Tony
----- Original Message -----
From: Sterling Hughes <sterling
designmultimedia.com>
To: Toshihide Tony Nakamura <tony
uickarate.com>
Cc: <php3
lists.php.net>
Sent: Sunday, April 23, 2000 12:35 AM
Subject: Re: [PHP3] Cookie again!
> Toshihide Tony Nakamura wrote:
> >
> > I placed the setcookie() function at the top of the page, and
> > it's still complaining that it should be called before anything is
outputted
> > to the browser. Do you have any ideas why?
> >
> > Again and again, thanks in advance!
> >
> > Tony
>
> Make sure that your <?php tag is also at the top of the page, meaning
>
> Correct:
> ---top of page---
> <?php
> setcookie(...);
> ?>
>
> Incorrect:
> ---top of page---
>
> <?php
> setcookie(...);
> ?>
>
> Sterling
> sterling
designmultimedia.com
>
attached mail follows:
Funny enough, I just decided to do that right before you emailed me.
I guess this is the standard way of setting the cookie?
Well, the hassle that I see is this:
If there are many links from the page that runs the query, I have to insert
the setcookie()
function at the top of every page that is linked to. Is there any ways
around this?
Thanks!
Tony
----- Original Message -----
From: Rian <ste94018
stttelkom.ac.id>
To: Toshihide Tony Nakamura <tony
uickarate.com>
Sent: Sunday, April 23, 2000 2:07 PM
Subject: Re: [PHP3] Cookie again!
> how about like this,
> let say the variable you get from query is $res
>
> if you want to use this variable into next page (that's usually why we use
> cookie), try this :
> <a href = "next-page.php3?query=$res">bla bla </a>
>
> then in the next page you'll get $query ready to use ...
>
> :)
>
> -----Original Message-----
> From: Toshihide Tony Nakamura <tony
uickarate.com>
> To: Sterling Hughes <sterling
designmultimedia.com>
> Cc: php3
lists.php.net <>
> Date: Sunday, April 23, 2000 12:42 PM
> Subject: Re: [PHP3] Cookie again!
>
>
> >Thanks!
> >
> >Well, actually, the problem was this:
> >
> >The value of the cookie is actually retried by running a query, so
> >I cannot set the cookie at the top of the page. I am trying to use
> >JavaScript now because of this reason. I think JavaScript lets me
> >set the cookie wherever I want, but it just won't be in effect until
> >the next page is loaded. Hmmm... People don't fine this a bit
> >inconvenient??? I do now, but maybe I will learn the standard procedure
> >later.
> >
> >
> >Tony
> >
> >
> >----- Original Message -----
> >From: Sterling Hughes <sterling
designmultimedia.com>
> >To: Toshihide Tony Nakamura <tony
uickarate.com>
> >Cc: <php3
lists.php.net>
> >Sent: Sunday, April 23, 2000 12:35 AM
> >Subject: Re: [PHP3] Cookie again!
> >
> >
> >> Toshihide Tony Nakamura wrote:
> >> >
> >> > I placed the setcookie() function at the top of the page, and
> >> > it's still complaining that it should be called before anything is
> >outputted
> >> > to the browser. Do you have any ideas why?
> >> >
> >> > Again and again, thanks in advance!
> >> >
> >> > Tony
> >>
> >> Make sure that your <?php tag is also at the top of the page, meaning
> >>
> >> Correct:
> >> ---top of page---
> >> <?php
> >> setcookie(...);
> >> ?>
> >>
> >> Incorrect:
> >> ---top of page---
> >>
> >> <?php
> >> setcookie(...);
> >> ?>
> >>
> >> Sterling
> >> sterling
designmultimedia.com
> >>
> >
> >
> >--
> >PHP 3 Mailing List <http://www.php.net/>
> >To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
> >To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
> >To search the mailing list archive, go to:
> http://www.php.net/mailsearch.php3
> >To contact the list administrators, e-mail: php-list-admin
lists.php.net
> >
>
attached mail follows:
-----Original Message-----
>Funny enough, I just decided to do that right before you emailed me.
>I guess this is the standard way of setting the cookie?
>Well, the hassle that I see is this:
>
>If there are many links from the page that runs the query, I have to insert
>the setcookie()
>function at the top of every page that is linked to. Is there any ways
>around this?
you dont have to use setcookie() function because in the next page you will
be able to use $query automatically. am i right ?
???
Eris
attached mail follows:
Well, I needed to set the cookie so that I can use the cookie in all other
pages
that user goes to afterwards. I did't want to use % strategy for all the
pages the
user wanted to go to.
Thanks!
Tony
----- Original Message -----
From: Rian <ste94018
stttelkom.ac.id>
To: Toshihide Tony Nakamura <tony
uickarate.com>
Cc: <php3
lists.php.net>
Sent: Sunday, April 23, 2000 2:30 PM
Subject: Re: [PHP3] Cookie again!
>
> -----Original Message-----
> >Funny enough, I just decided to do that right before you emailed me.
> >I guess this is the standard way of setting the cookie?
> >Well, the hassle that I see is this:
> >
> >If there are many links from the page that runs the query, I have to
insert
> >the setcookie()
> >function at the top of every page that is linked to. Is there any ways
> >around this?
>
> you dont have to use setcookie() function because in the next page you
will
> be able to use $query automatically. am i right ?
>
> ???
>
> Eris
>
>
>
>
> --
> PHP 3 Mailing List <http://www.php.net/>
> To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
> To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
> To search the mailing list archive, go to:
http://www.php.net/mailsearch.php3
> To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
>
attached mail follows:
Hey,
Does anyone know what XML_SKIP_WHITE and XML_TAG_START represent as XML
constants in PHP, I saw them in the source of xml.c, however, there is
no documentation in regards to what they stand for.
Thanks,
Sterling Hughes
sterling
designmultimedia.com
P.s.: They are used with xml_parser_get_option and
xml_parser_set_option...
attached mail follows:
I need to change 18412591189 to 8412591189?
Is there a way to use ereg_replace to replace "First" instance of the
matched pattern.
I can not figure out how to do it with substr_replace()
and I can not use substr_replace() because my host does not have PHP version
4.
Ted Knudson
http://www.automatedcabinets.com
http://www.pulsarusa.com
attached mail follows:
At 12:52 AM 4/23/00 -0500, you wrote:
>I need to change 18412591189 to 8412591189?
>Is there a way to use ereg_replace to replace "First" instance of the
>matched pattern.
>I can not figure out how to do it with substr_replace()
>and I can not use substr_replace() because my host does not have PHP version
>4.
Hi Ted,
What is the rule behind converting 18412591189 to 8412591189? Are you just
looking to drop the leading 1? Please be more specific. :)
Zak
attached mail follows:
I'm learning PHP (and I gotta admit, it's been a real hoot) and I've chosen
PostgreSQL as my database for storage. On some mailing list I'm a member of
I had seen a message regarding a postgresql record is limited to 8k. Coming
from a SQL Server background, I found this completely unbelievable, so I
started extensive reading of the postgresql manual, and sure enough it's
true. Granted 8k isn't s tiny number, but it's sure not what I was hoping
for or expecting.
As I read further and further into the documentation, I've started to
question my choice of using PostgreSQL... so now I'm looking for advice.
On a linux system, which database offers the most robust features and fast
performance? I hear mySQL is fairly fast, but there are no stored
procedures, triggers, etc... which is very limiting. I know nothing about
mSQL, so I'm just looking for some overall advice... should I stay with
postgresql or move to another RDMS?
Thanx!
Joseph E. Sheble
a.k.a. Wizaerd
Wizaerd's Realm
Canvas, 3D, Graphics, ColdFusion
http://www.wizaerd.com
=================================
Zanova, Inc.
http://www.zanova.com
Moving Business Forward.....
=================================
attached mail follows:
Wizaerd wrote:
>
> I'm learning PHP (and I gotta admit, it's been a real hoot) and I've chosen
> PostgreSQL as my database for storage. On some mailing list I'm a member of
> I had seen a message regarding a postgresql record is limited to 8k. Coming
> from a SQL Server background, I found this completely unbelievable, so I
> started extensive reading of the postgresql manual, and sure enough it's
> true. Granted 8k isn't s tiny number, but it's sure not what I was hoping
> for or expecting.
>
> As I read further and further into the documentation, I've started to
> question my choice of using PostgreSQL... so now I'm looking for advice.
> On a linux system, which database offers the most robust features and fast
> performance? I hear mySQL is fairly fast, but there are no stored
> procedures, triggers, etc... which is very limiting. I know nothing about
> mSQL, so I'm just looking for some overall advice... should I stay with
> postgresql or move to another RDMS?
>
I personally love mySQL, the little it lacks in power it more than makes
up for in speed. However, if you are just teaching yourself PHP or
hacking around, then Postgres, mySQL, mSQL, etc. are all perfect for
your needs and I wouldn't bother changing. But, if for some reason you
want to work on the most powerful, most souped up db there is, I would
have to say that Oracle is your best bet.
Sterling Hughes
sterling
designmultimedia.com
attached mail follows:
Wizaerd wrote:
> I'm learning PHP (and I gotta admit, it's been a real hoot) and I've chosen
> PostgreSQL as my database for storage. On some mailing list I'm a member of
> I had seen a message regarding a postgresql record is limited to 8k. Coming
> from a SQL Server background, I found this completely unbelievable, so I
> started extensive reading of the postgresql manual, and sure enough it's
> true. Granted 8k isn't s tiny number, but it's sure not what I was hoping
> for or expecting.
>
> As I read further and further into the documentation, I've started to
> question my choice of using PostgreSQL... so now I'm looking for advice.
> On a linux system, which database offers the most robust features and fast
> performance? I hear mySQL is fairly fast, but there are no stored
> procedures, triggers, etc... which is very limiting. I know nothing about
> mSQL, so I'm just looking for some overall advice... should I stay with
> postgresql or move to another RDMS?
>
> Thanx!
>
> Joseph E. Sheble
> a.k.a. Wizaerd
> Wizaerd's Realm
> Canvas, 3D, Graphics, ColdFusion
> http://www.wizaerd.com
> =================================
> Zanova, Inc.
> http://www.zanova.com
> Moving Business Forward.....
> =================================
>
> --
> PHP 3 Mailing List <http://www.php.net/>
> To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
> To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
> To search the mailing list archive, go to: http://www.php.net/mailsearch.php3
> To contact the list administrators, e-mail: php-list-admin
lists.php.net
im currently using PostGreSQL for a current project and was shocked to find this
out..
i did a little search.. i found out it can be changed..
http://www.postgresql.org/mhonarc/pgsql-sql/1999-02/msg00192.html
attached mail follows:
> I'm learning PHP (and I gotta admit, it's been a real hoot) and I've
chosen
> PostgreSQL as my database for storage. On some mailing list I'm a member
of
> I had seen a message regarding a postgresql record is limited to 8k.
Coming
> from a SQL Server background, I found this completely unbelievable, so I
> started extensive reading of the postgresql manual, and sure enough it's
> true. Granted 8k isn't s tiny number, but it's sure not what I was hoping
> for or expecting.
This limit is going to be removed in PostgreSQL 7.1 (which is due out right
after 7.0 goes release, which in turn should be any day now).
> As I read further and further into the documentation, I've started to
> question my choice of using PostgreSQL...
PostgreSQL is a very, very powerful RDBMS but it isn't for everyone. I find
it better for programming applications that do a lot of calculations on the
data in the database. MySQL is a much better choice for a "plug n' rip"
application (as I like to call them)..
If *all* you're doing is plugging in and pulling out data more or less
blindly, MySQL will work perfectly.
However in many instances you need the use of transactions, sequences,
triggers and many of the more powerful features in PostgreSQL that set it
apart from the rest of the (Free) RDBMSs out there.
>so now I'm looking for advice.
> On a linux system, which database offers the most robust features and fast
> performance? I hear mySQL is fairly fast, but there are no stored
> procedures, triggers, etc... which is very limiting. I know nothing about
> mSQL, so I'm just looking for some overall advice... should I stay with
> postgresql or move to another RDMS?
MySQL was built from mSQL I believe so their feature set is progbably going
to be very much alike..
Good luck!
-Mitch
attached mail follows:
I used the following code segment to set a cookie:
<?
setcookie( "testCookie", "test" );
?>
It works fine. However, when I tried to set the expiry param, it fails to
do so (on IE5 and NS4.72):
<?
setcookie( "testCookie", "test", time()+60 );
?>
Have any of you faced such problem before? Appreciate for your sharing and
help. Thanks.
DW
attached mail follows:
try the snoopy class
snoopy.sourceforge.net
works for me
Tarique
=======================================
Creating not just Web Sites but Web Applications
http://www.sanisoft-india.com
Search Engine for Nagpur http://nagpurcity.net
=======================================
-----Original Message-----
From: Rouvas Stathis <rouvas
di.uoa.gr>
To: Ben Ocean <beno
cnw.com>
Cc: php3
lists.php.net <php3
lists.php.net>
Date: Saturday, April 22, 2000 2:31 PM
Subject: Re: [PHP3] building a robot
>Not a PHP solution, but it seems pwerfull enough
>
><URL:http://phiphi.hypermart.net/elza-entry.html>
>
>-Stathis.
>
>
>Ben Ocean wrote:
>>
>> Hi all;
>> I would like to build a robot that was programmed to go to specific web
>> sites, enter the correct information into various pulldown menus and
>> retrieve the resultant data. How would I do this? TIA,
>> BenO
>>
>> --
>> PHP 3 Mailing List <http://www.php.net/>
>> To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
>> To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
>> To search the mailing list archive, go to:
http://www.php.net/mailsearch.php3
>> To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
>--
>+-----------------------------+
>|Rouvas Stathis |
>|University of Athens |
>|Department of Informatics |
>|http://www.di.uoa.gr/~rouvas |
>|rouvas
di.uoa.gr |
>+-----------------------------+
>
>--
>PHP 3 Mailing List <http://www.php.net/>
>To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
>To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
>To search the mailing list archive, go to:
http://www.php.net/mailsearch.php3
>To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
attached mail follows:
Hi,
With Oracle you need an Oracle client for Linux installed and the oracle/oc8 module for php3.
Microsoft does not have a client for Linix so you might use ODBC (or the sybase module if you are using SQL Server 6.5). You can also use FreeTDS, but no module has been build so far (I'm currently testing an alpha version of this module).
You can also use ODBC to connect to oracle.
- Frank
>Sir,
>
>We are running Oracle and MsSQL on NT. We like PHP programs on the Linux Servers to use these databases. please tell us how/what all is required for doing it and where it is available
>
>Ram Prasad
>
Swwwing A/S
Frank M. Kromann
VP Development
Phone: +45 70 20 77 20
Fax: +45 70 20 77 21
http://www.swwwing.com
attached mail follows:
Hi Eric,
The module is loaded either with the dl("php3_mssql.dll") command in the begining of your script or by extention=php3_mssql.dll in your php3.ini file.
The module will only load if you have MSSQL Server Client tools installed on the maschine !
Does the system gives you an error message ?
- Frank
>This isn't even a code problem! I'm just trying to get the mssql extension
>to load in PHP, and failing. I'm in WinNT, both the web server and PHP work
>great, and I can load other modules like MySQL and crypt. I do have the dll
>in the proper directory, but it's not showing up in php_info(), and I get
>errors about mssql_connect() not being defined. This should be a simple
>thing, and it's starting to piss me off. Oh, and I've tried both 3.0.9 and
>3.0.16 of PHP, no dice either way.
>
>Thanks!
>
>Eric Pree
>CTO
>Whiscnet
>
>
>
>--
>PHP 3 Mailing List <http://www.php.net/>
>To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
>To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
>To search the mailing list archive, go to: http://www.php.net/mailsearch.php3
>To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
>
>
Swwwing A/S
Frank M. Kromann
VP Development
Phone: +45 70 20 77 20
Fax: +45 70 20 77 21
http://www.swwwing.com
attached mail follows:
May I have the sender email for the following posting. I need to contact the
sender.
Thanks
----- Original Message -----
To: <php3
lists.php.net>
Sent: Tuesday, April 25, 2000 6:05 AM
Subject: [PHP3] WEB DATABASES/LISTS - 30% TO 50% OFF - 10 DAYS ONLY--Adv.
> We wanted to share with you the latest 30%-50% OFF, 10 DAYS ONLY PRICING
> SPECIALS on our database of online businesses--a cutting edge business
tool
> for the growing networked marketplace. Our databases include contacts
> representing millions of online business domains which have sprung into
the
> age of the global Internet. They are compatible with Microsoft Office,
> Access and all database and contact management products because they are
> provided in comma delimited text.
>
> These searchable databases include the standard "white pages" information
> like company name, address, phone number, and fax number, but we have
added
> additional fields including first and last names of the contacts, e-mail
> addresses and Domain names. In some editions, an additional 4 fields of
> business/Web information are available.
>
> January 2000 CD-ROM databases include:
>
> Company Name
> Address
> City
> State or Province
> Postal Code
> Country
> Prefix (Dr., Mr., Mrs., etc.)
> First Name
> Middle Name
> Last Name
> Suffix (Jr., II, III, IV, etc.)
> Phone
> Extension
> Fax
> E-mail Address
> Web Address (Domain name)
> -------------------------
> Expanded Editions add the following fields (web info):
>
> Web Title (title of web page)
> META Description (description of website)
> META Keywords (keywords pertinent to website)
> BODY (first 255 characters of default web page, e.g. index.htm,
> index.htm, default.htm)
>
>
> Available data includes:
>
> **** 8.8 Million Domain Records--MASTER DATABASE on 3 CD-ROM set ****
>
> 8,841,086 Domain Records Worldwide
> .COM, .NET, .ORG, .EDU
> CALL FOR DETAILS
>
>
> **** 50% OFF **** US and Canadian Domain Contacts **** 50% OFF ****
>
> 1,450,397 records: WAS $2995.00 - NOW $1497.50
> US AND CANADA .COM & .NET
>
>
> *NEW* IT Workers-reach up to 200,000 IT (Information Technology) workers.
>
> 201,603 records: WAS $1995.00 - NOW $997.50
> US AND CANADA .COM & .NET
> 50% OFF!!!
>
>
> **** 30% OFF **** CANADA and METRO EDITIONS **** 30% OFF ****
>
> Canada
> 95,158 records: WAS $899.95 - NOW $629.97
>
> New York City Metro Area
> 91,419 records: WAS $899.95 - NOW $629.97
>
> Los Angeles Metro Area
> 146,571 records: WAS $1199.95 - NOW $839.97
>
> San Francisco Bay Metro Area
> 01,062 records: WAS $899.95 - NOW $629.97
>
> Washington D.C. Metro Area
> 59,789 records: WAS $749.95 - NOW $524.97
>
> Boston Metro Area
> 46,446 records: WAS $649.95 - NOW $454.97
>
> ADD 33% for additional 4 fields of Web info:
>
>
> **** 50% OFF **** Domain Name Master List **** 50% OFF ****
>
> Over 10 million .COM, .NET, .ORG & .EDU domains
> and growing!
> Was $1995.00 - Now $997.50
>
>
>
> ALL DISCOUNTS EXPIRE APRIL 30TH, 2000.
> All prices are in US Dollars.
> ALL MAJOR CREDIT CARDS ACCEPTED.
>
> Please call or fax toll-free at 888-922-5967.
>
> This is a one time announcement. However, if you feel
> you need to, you can remove via e-mail by replying to
> this message with REMOVE in the subject or leave a
> remove by phone or fax at 888-922-5967.
>
>
> Regards,
>
> John Powers
> EVA, Inc.
>
> --
> PHP 3 Mailing List <http://www.php.net/>
> To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
> To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
> To search the mailing list archive, go to:
http://www.php.net/mailsearch.php3
> To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
>
attached mail follows:
I got the same reply on my previous email to the list.
probably someone has set up an autoresponder with
spam that just replies to every email within this list!
Maybe one can find the origin an disable this IP?
- dk
Marcus D Hanwell schrieb:
> Does anyone know exactly what this is? And why does it have my domain name
> (cryos.net) in it??
>
> If anyone could explain this I would appreciate it - is it just standard spam?
> If so I would still like to know why the reply address has my domain in it, and
> why the reply address is in the
lists.php.net sub-domain?
>
> Yours confusedly,
>
> Marcus
>
> php3-return-87226-linux=cryos.net
lists.php.net wrote:
>
> > Good day,
> > Subject: [PHP3] WEB DATABASES/LISTS - 30% TO 50% OFF - 10 DAYS ONLY--Adv.
> >
> > We wanted to share with you the latest 30%-50% OFF, 10 DAYS ONLY PRICING
> >
>
> <SNIP>
>
> > Regards,
> >
> > John Powers
> > EVA, Inc
attached mail follows:
Hi Zak & List..
Atlast I accomplished that query by adding a '%' symbox at the last of
the sql query:
$qy="(select distinct(profile.city) from profile, category where
profile.status='yes' and category.profileid=profile.id and category.item
Like '$frmcat%')";
-- In this query you can see a % symbol added to the variable $frmcat which
is the item / category which I am getting from the user as a query string. I
could get the usage of % from one of my friend and then I tried and made it
work. I understood that the 'category.item Like '$frmcat%' works only with
the % symbol in any sql query.
I had to change my thoughts of sql in php that - it works excellently in
php with ms access. No problems in that. I am even more loving to fight with
this kind of complex queries in the following days.
Thanks a lot to this list and thanks to Zak also..
-- K
> Hi K,
>
> K wrote:
> >
> > What do I substitute with P & C ??.
> >
> > I have two tables: Profile & Category. That's all.
> >
> > Can I do this as a two sql query ?. If yes, how to accomplish it ?!.
> >
> > Pls. help me out and this is very URGENT now !.
>
> You shouldn't need to substitute anything for the P and C. They are
> aliases for table names. Just try the query and see if it works. If it
> doesn't work, then try the second option that I sent out in my initial
> response to your 'Query' question - it details how to solve your problem
> with two queries.
>
> Good Luck!
>
> Zak
>
attached mail follows:
Hello,
Im trying to connect to a Winodws machine witha MS Acccess database on ODBC but when i try to call odbc_connectin php it keeps giving me this error:
Fatal error: Call to unsupported or undefined function odbc_connect() in inc/functions.php on line 32
This makes no sense to me why it is doing this maybe someone can give me some assistance
PHP3 on apache 1.3.9 Linux Mandrake 7.0
Connecting to Windows 98 with an odbc database setup.
Jared Armstrong
attached mail follows:
try looking at this tutorial :
tracking where/what on your site people are clicking
http://www.weberdev.com/ViewArticle.php3?ArticleID#
berber
-----Original Message-----
From: l.k [mailto:likai21
sina.com]
Sent: Friday, April 21, 2000 2:25 PM
To: php3
lists.php.net
Subject: [PHP3] ==Please help!!!==
I am now makeing a php3 program which use a href link to download, but at
same time count the file download times.
I try to use java script <a href= file href link onClickunter()>
but I can not add those code in php3.
And I try to use header(), but sames not work.
who can help me? Thanks a lot first.
-- PHP 3 Mailing List <http://www.php.net/> To unsubscribe, send an empty message to php3-unsubscribelists.php.net To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 To contact the list administrators, e-mail: php-list-admin
lists.php.net
attached mail follows:
I'm trying to figure out how to upload an image file from a local hard drive and store it in a BLOB field in a mySQL database. Can anyone point me to some online documentation/sample code or forward me some notes on this?
attached mail follows:
Hi All,
Just a short note to say the there is a PHP UK list at www.egroups.com
to subscribe use this link PHP_UK-subscribe
egroups.com.
This is _not_ the same list that fell over.
-- Regards,David
davide
cavendish.com
-------------------------------------- Use your tag line today! Tag Line No 72674 Al Gore - risen from obscurity & headed for oblivion. --------------------------------------
attached mail follows:
Hello All, I've just joined this list and this is my first post so please forgive me (and let me know) if there is a more appropriate place for my question. I have searched the archives but didn't find anything enlightening.
Ok, onto my problem. I've built PHP 3.0.16 from source and I'm trying to get it to work on RedHat Linux 6.1 (kernel 2.2.12) with Apache 1.3.9 (installed via apache-1.3.9-8.rpm). I've followed the instructions in the PHP documentation, including the must read RedHat instructions (which don't seem to apply in my case since I'm not using RPMs for PHP) and it simply does not work (apache won't start and there is no error message.)
I've built PHP as a DSO and I have:
LoadModule php3_module libexec/libphp3.so AddModule mod_php3.c
in my /etc/http/http.conf file.
When I try to start apache I get, "httpd: httpd startup succeeded" on the console but it does not in fact start (there is no httpd process.) If I remove:
AddModule mod_php3.c
Then I at least get, "[error] Cannot remove module mod_php3.c: not found in module list", and Apache does not start. If I remove, "LoadModule php3_module..." then apache starts
I did have PHP4, beta1 installed but have since removed it from any configuration file and from the apache modules directory. PHP4 installed and ran with no problem. I thought perhaps that something from PHP4 was still lying around causing my problem, but I haven't been able to find anything.
httpd -l reports:
Compiled-in modules: http_core.c mod_so.c
Someone please beat me with a clue stick.
thanks, Peter
attached mail follows:
Hi,
I'm new to this list. I've just started using and learning PHP. I've installed PHP4 on to my windows 98 personal web server and it's running fine, and so is mysql.
I have a query, when we are searching through the database, we can search by matching the form field value with the data in a field, for eg:- Killer=Dracula, but that is in case the field Killer in the database contains only the word "Dracula". What if the field "Killer" contains "Dracula, Vampire" - and i want that whenever someone writes "Dracula" in the search field - any row with the Data "Dracula" in the killer field, along with any other string in it as well, should be listed. How can that be done? Matching a string in a given field havinng multiple strings?
Much thanks,
Thomas Edison Jr.
__________________________________________________ Do You Yahoo!? Send online invitations with Yahoo! Invites. http://invites.yahoo.com
attached mail follows:
Hi Guys,
I'm sure some of you can help me with this. I have a textarea-control on one of my sites. When the user types a message, including returns (line-feeds) I want that to show on another page in HTML. My problem is that the text will not show correctly in HTML since it does not contain the <br> or <p> tags.
I wrote this:
// $input contains the text $input = eregi_replace("\n", "<br>\n", $input); $input = eregi_replace("<br>\n<br>\n", "<p>\n\n", $input); echo $input;
What am I doing wrong?
Thanx a lot.
Greetz,
Vincent Driessen Venlo, The Netherlands
attached mail follows:
Hi,
I am quite new PHP, so please bare with me if my question had been asked before.
Is there any reference anywhere where there are sample of PHP programmed shopping carts that does use database?
Rgds
-------------------------------------------------------------- The Oikoses [Your Web Resources]
10, Anson Road #18-18, International Plaza, Singapore 079903
Fax: (65) 565-5320 http://www.theoikoses.com --------------------------------------------------------------
attached mail follows:
Hi there,
I'm trying to run a php script every day. I think cron job can do this stuff. The problem is I'm not familiar with it :).. How can i execute a php file (say php.phtml) every 12:00am everyday. Kindly give me an example of how I can do this while on telnet. Oh, btw, i'm running php on apache module
God bless.
Arnold Gamboa Web Programmer ------------------------------- If Christ is our programmer, How can our lives have bugs!
attached mail follows:
---------- Original Message ----------------------------------
From: "Arnold Gamboa" <arnoldc.gamboa
mileuweb.com>
Date: Mon, 24 Apr 2000 00:37:11 +0800
>Hi there, > >I'm trying to run a php script every day. I think cron job can do this >stuff. The problem is I'm not familiar with it :).. How can i execute a php >file (say php.phtml) every 12:00am everyday. Kindly give me an example
first at the telnet prompt type in: man cron and read that :)
I assume that the script that you are running has correct file permissions set and access to wherever you want to run it. Remember, apache modules run as the webserver uid and group (usually httpd or nobody)
If the above assumption is correct, then the command you want to run in your crontab is lynx [option list] php.phtml. This will excecute your php script, and you won't have to compile a standalone cgi version (although - it can be handy to have around :)
I am also assuming that your script just does something - and does not need any user interaction.
attached mail follows:
check for it like this:
if(! $textbox1){ print "Textbox1 is required"; }
I use this to validate all required boxes.
****** Original Message ******
php3-return-87202-llbishop=themail.com
lists.php.net wrote:
>
>
>
>
>
>I am taking results from a form. There are multiple text boxes on the form
>
>and if they leave one blank I have an if () statement to deal with
>
>it. Like:
>
>
>
>if ($textbox1 != "") {
>
>$textbox1 = X;
>
>}
>
>
>
>but it doesn't act like $textbox one is blank, though it is. In the url is
>
>says update.php?textbox1=
>
>
>
>and when I echo it with || around it, they are right next to each
>
>other. So there really isn't anything there. Why won't this work? Thanks
>
>for the time.
>
>
>
>andy
>
>
>
>
>
>
>
>--
>
>PHP 3 Mailing List <http://www.php.net/>
>
>To unsubscribe, send an empty message to php3-unsubscribe
lists.php.net
>
>To subscribe to the digest, e-mail: php3-digest-subscribe
lists.php.net
>
>To search the mailing list archive, go to: http://www.php.net/mailsearch.php3
>
>To contact the list administrators, e-mail: php-list-admin
lists.php.net
>
>
>
>
__________________________________________________________________
Make A Buck Or Two
TheMail.com - Free Internet Email
Sign-up today at http://www.themail.com/ref.htm?ref=63408
- Next message: php3-digest-help
lists.php.net: "php3 Digest 24 Apr 2000 04:57:44 -0000 Issue 1626"
- Previous message: php3-digest-help
lists.php.net: "php3 Digest 23 Apr 2000 04:57:48 -0000 Issue 1624"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]