[PHP] Re: PHP + GD + FreeBSD

2001-05-11 Thread Daniel BI
Take a look into the GD makefile. I had once a problem like yours and there was the solution. Daniel BI - When i compile PHP on my FreeBSD with the following confgoptions, i don't get png support. Whats wrong? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] Re: php propaganda request

2001-05-16 Thread Sara Young
There are also PHP case studies at http://www.zend.com/zend/cs/ Sara On 15 May 2001, at 8:27, Philip Olson wrote: > > Greetings PHP friends, > > I'm compiling a list of PHP related propaganda, please send any that you > know of. Positive, Negative, Neutral ... all is welcome! ;-) Thus far :

[PHP] Re:[PHP] MySQL Select

2001-05-23 Thread Jon Yaggie
think this is what you want $i = 0; $result = mysql_query("SELECT jazz FROM funk WHERE foo='bar'") while($music = mysql_fetch_array($result)) { $funk_music[$i] = $music[0]; $I++; } ok...sorry to ask a stupid question but $result = mysql_query("SELECT jazz FROM funk WHERE foo='

[PHP] Re:[PHP] Session Question

2001-07-15 Thread Tom Malone
Thanks Christopher! I chmoded the directory to 777 like you said, and it worked fine, but then I took your advice regarding security and put all the data in a MySQL database. Thank you very much for your help! Tom Malone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] Re: PHP and XHTML

2001-07-18 Thread Inércia Sensorial
echo '<'."?xml version=\"1.0\" encoding=\"UTF-8\"?".'>'; Also, you may set short open tags off so php is only activated between . -- Julio Nobrega. Because happiness is a warm gun Bang-bang shoot-shoot "Daniel Rose" <[EMAIL PROTECTED]> wrote in message 004301c10f49$a9b18fe0$0a01a8c0@w98"

[PHP] Re: PHP shell scripting..

2001-07-22 Thread
In article <001c01c112da$b8c0d420$0d6fa8c0@local>, Ryan Christensen wrote: >I have some questions about using PHP as a shell scripting language... >mainly how you pass arguments to a script on the command line. Say I'm >using: > >-- >#!/usr/local/bin/php -q > >print "I am:

[PHP] Re: php stand alone

2001-07-24 Thread Steve Brett
i don't think the last post was right, there is some stuff at phpbuilder about using php with shell access, i guess you could write a shell script that is called from cron ... here you go ... http://www.phpbuilder.com/columns/darrell2319.php3 Steve "Adrian D'Costa" <[EMAIL PROTECTED]> wrote

[PHP] Re: [php] undefined offset?

2001-08-03 Thread Chris Lee
you never defined test[8] thats why its undeined. more likley then not check in your php.ini file, i bet you have warning = ~E_WARNINGS E_ALL; in your linux box and warning = E_ALL; in your win box. I like all warnings and errors showing, personal opinion. -- Chris Lee [EMAIL PROTECT

[PHP] Re: PHP Grammar Definition

2001-08-03 Thread Richard Lynch
I'm pretty sure PHP uses bison/flex/yacc/lex stuff, so there might be an input file in the source you can use... -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time:

[PHP] Re: PHP Shopping Carts ??

2001-08-14 Thread Richard Lynch
http://l-i-e.com/compare/ -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Christopher Raymo

[PHP] Re: [PHP-DB] MYSQL_SOCKET

2001-08-16 Thread Jay Paulson
yes i'm actually getting the MYSQL_SOCKET variable and it's looking for the mysql.sock file in /tmp however it's placed in the /var/lib/mysql directory and I don't know how to change this. I've looked in the php.ini but didn't see anything about it. I've also looked for the my.cnf file and it's

[PHP] Re: PHP based authentification -----------

2001-08-19 Thread Richard Lynch
> How can I "logout" from a PHP based auth (with PHP_AUTH_USER and PHP_AUTH_PW > and appropriate headers sent at the beginning)? > It seems like unset($PHP_AUTH_USER) does not wotk in this case... unset() won't do anything because the *BROWSER* re-sends the username/password for that Realm when i

[PHP] Re: PHP based auth -----------------

2001-08-20 Thread Alex Sofronie
No, I'm just using PHP_AUTH_USER and PHP_AUTH PW and i am trying to logout... The session_destroy() is not working. -- 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,

RE: [PHP] Re: PHP indexOf()?

2001-08-21 Thread Taylor, Stewart
http://www.php.net/manual/en/function.strpos.php -Stewart -Original Message- From: Kevin P [mailto:[EMAIL PROTECTED]] Sent: 21 August 2001 20:44 To: [EMAIL PROTECTED] Subject: [PHP] Re: PHP indexOf()? For someone used to Java & JavaScript.. what function would rep

Re: [PHP] Re: PHP indexOf()?

2001-08-21 Thread Thomas Deliduka
On 8/21/2001 3:43 PM this was written: > For someone used to Java & JavaScript.. what function would replace > myString.indexOf(myStringPiece) ?? Strstr() Or stristr() for case insensative search http://www.php.net/manual/en/function.strstr.php -- Thomas Deliduka IT Manager ---

[PHP] Re: PHP based authentification -----------

2001-08-24 Thread Ralph Deffke
send an 401 unauthorized header. see php manuall under function header() as an example Alex Sofronie schrieb: > Hi all! > > How can I "logout" from a PHP based auth (with PHP_AUTH_USER and PHP_AUTH_PW > and appropriate headers sent at the beginning)? > It seems like unset($PHP_AUTH_USER) does no

RE: [PHP] Re: PHP secure

2001-08-24 Thread Erik H. Mathy
> Encode (or compile) the source. > > Zend's compiler costs 2400 dollars. At this cost is better to > release your code on an open source license ;-) The open source license is only as effective as your ability to hire a lawyer to enforce it. ;) It also depends on: a.) How much you're charg

RE: [PHP] Re: PHP secure

2001-08-24 Thread J Smith
If you can't trust your clients with the source code, what are you telling your clients? J Erik H. Mathy wrote: >> Encode (or compile) the source. >> >> Zend's compiler costs 2400 dollars. At this cost is better to >> release your code on an open source license ;-) > > The open source lic

RE: [PHP] Re: PHP secure

2001-08-24 Thread Brian Tanner
-- From: J Smith [mailto:[EMAIL PROTECTED]] Sent: August 24, 2001 5:28 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: PHP secure If you can't trust your clients with the source code, what are you telling your clients? J Erik H. Mathy wrote: >> Encode (or compile) the source. &g

RE: [PHP] Re: PHP secure

2001-08-24 Thread Dave
>-Original Message- >From: J Smith [mailto:[EMAIL PROTECTED]] >Sent: Friday, August 24, 2001 8:28 AM >To: [EMAIL PROTECTED] >Subject: RE: [PHP] Re: PHP secure > > >If you can't trust your clients with the source code, what are you telling >your clients? >

[PHP] Re: PHP auth logout

2001-08-30 Thread Richard Lynch
> Thanks for all the answers to this question but hitting the back button will > work, no authorization required to see the pages all over. You need to get those pages to not be cached by the browser. http://php.net/header > Repost problem: > I'm having a PHP based auth. It seems that unset($PHP

[PHP] Re: PHP Article... Comments??

2001-08-30 Thread Richard Lynch
Read the archives. Also read php-dev archives. You'll find plenty of thoughts. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.h

[PHP] Re: PHP and PWS

2001-08-30 Thread Richard Lynch
use / not \ And spell inetpub correctly :-) -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - Fr

[PHP] Re: PHP and Mysql

2001-09-05 Thread Ron Wills
Aloysius wrote: > my mysql database just won't work .. i think i have configured it correctly cause i >can see a page but the codes are messed up .. > i can confirm that the servers supports php . both php and php3 extension because >i've tried uploading simple codes and it appears correctly .

[PHP] Re: PHP regexp powerful?

2001-09-07 Thread _lallous
Are they powerful? Well they are compatible with PERL's Regular expressions...you should use the 'preg_' functions... Check the manual anyway...: http://www.php.net/manual/en/ref.pcre.php "Jeff Lewis" <[EMAIL PROTECTED]> wrote in message 009201c13704$b20abe90$76a1a8c0@LEWISJCIT">news:009201c1370

[PHP] Re: PHP and MySQL

2001-09-08 Thread Richard Lynch
Options: Increase the settings in MySQL that limit how many databases can be open at once. Decrease the number of Apache children running. Basically, as long as you have more Apache children than MySQL connections available, you can get this message. Actually, have a few spare MySQL connections,

[PHP] Re: PHP and MySQL

2001-09-08 Thread Pieter Philippaerts
Unfortunately, I can't access these settings. It's not our computer that hosts our website. Regards, Pieter Philippaerts "Richard Lynch" <[EMAIL PROTECTED]> wrote in message 01e501c138ce$f3008300$6401a8c0@Lynchux100">news:01e501c138ce$f3008300$6401a8c0@Lynchux100... > Options: > Increase the set

[PHP] Re: PHP and MySQL

2001-09-10 Thread Stefan de Wal
check your connection string and if it something like mysql_pconnect change it in mysql_connect Stefan de Wal "Pieter Philippaerts" <[EMAIL PROTECTED]> schreef in bericht ([EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Unfortunately, I can't access these settings. It's not our computer that > ho

[PHP] Re: PHP and MySQL

2001-09-10 Thread Pieter Philippaerts
We have never used mysql_pconnect. Regards, Pieter Philippaerts "Stefan De Wal" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > check your connection string and if it something like mysql_pconnect change > it in mysql_connect > > Stefan de Wal -- PHP Gener

[PHP] Re: PHP module unloadable

2001-09-11 Thread Richard Lynch
I think uncompress may be in zlib, which you said not to use... -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original

[PHP] Re: PHP module unloadable

2001-09-11 Thread Kevin Way
> I think uncompress may be in zlib, which you said not to use... DOH! Yeah, that was the problem... I Embarassed, Kevin Way -- 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 admi

[PHP] Re: PHP versus ZOPE

2001-09-15 Thread John Lim
Andrew Kuchling is a well known Zope/Python expert who switched to something simpler. Here's why... http://www.amk.ca/python/writing/why-not-zope.html "Carlos Fernando Scheidecker Antunes" <[EMAIL PROTECTED]> wrote in message 002101c13e50$021ac860$0a505ad1@Nando4">news:002101c13e50$021ac860

[PHP] Re: PHP Auth problem

2001-09-21 Thread Richard Lynch
If your code doesn't look like this: http://www.php.net/manual/en/features.http-auth.php you did it wrong. Replace the == test with your imap_open, but don't go re-arranging the if/else logic or the header() order. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTEC

[PHP] Re: Php Codes needed

2001-09-21 Thread Richard Lynch
Try: header("Location: $HTTP_REFERER); I guess... But you may need to pass along whatever data you want to keep, or use sessions so there's only a SESSION_ID to pass along. http://php.net/session_start -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna he

[PHP] Re: PHP & Dreamweaver / Fireworks

2001-09-24 Thread Adam
> Sometimes I find it easier to build web tables inside fireworks, but I also > need to embed PHP code into the table (ie. to display the date, logged in > user, etc). Well, this is a pain because fireworks overwrites the entire PHP > file every time I make a change to it. If there's no PHP to emb

[PHP] Re: PHP & Dreamweaver / Fireworks

2001-09-24 Thread drb
I use Edit Plus on a windows machine - great text editor - check it out, easy to make tables as well. http://www.editplus.com/ the best program I ever purchased! DRB "Adam" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... | > Sometimes I find it easier to build

[PHP] Re: PHP and GD

2001-10-02 Thread Richard Lynch
What value is $im? Is it a valid image? Check error codes. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Me

[PHP] Re: PHP Parsing Database Text

2002-01-10 Thread Alan McFarlane
Look at (for example) the mySQL database suport for PHP. That will give you the basics for reading (and writing) database records. As for parsing this text, that's going to be up to you - I suppose ideally store the text in a 'structured' format: part1~part2~part3 etc then you can just use: $r

[PHP] Re: php executing system commands..

2002-01-11 Thread Martin Wickman
Louie Miranda wrote: > Hi, can php execute system commands > like df, and then print it to html ? `df`; shell ("df"); exec ("df"); etc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact th

[PHP] Re: PHP and search engine???

2002-01-13 Thread Tino Didriksen
You check the $HTTP_USER_AGENT for what robot is going through your site. Yahoo, which gets their results from Google, would then have Googlebot somewhere in the var. To control webcrawlers more, you can look up robots.txt ( http://www.robotstxt.org/ ). --|-- Tino Didriksen http://ProjectJJ.dk/

[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 "

[PHP] Re: PHP/ Oracle 'undefined function'

2002-01-18 Thread Philippe Saladin
PHP has to be compiled with the oci8 support (built-in module). The oracle extension is the "old one", the newest is oci8. Regards, Philippe "Gkin" <[EMAIL PROTECTED]> a écrit dans le message news: [EMAIL PROTECTED] > I get "undefined function" when I use PHP/Oracle-functions like ociconnect. > F

[PHP] Re: PHP vs Java reliability

2002-01-21 Thread Philip Hallstrom
http://www.zend.com/zend/art/php-over-java.php the "Why PHP" on zend.com is a great place to go for this sort of stuff... On Mon, 21 Jan 2002, Geoff Caplan wrote: > Hi folks > > Just putting together a brochure for a product authored in PHP, and making > the case for LAMP (Linux/Apache/MySQL/PH

[PHP] Re: PHP vs Java reliability

2002-01-21 Thread Michael Kimsal
Philip Hallstrom wrote: > http://www.zend.com/zend/art/php-over-java.php > > the "Why PHP" on zend.com is a great place to go for this sort of stuff... > Honestly, it doesn't seem all that professional a resource paper for some reason. It's not technical enough, primarily, and I don't think

Re: [PHP] Re:[PHP] Changeing Dates.

2002-01-26 Thread DL Neil
Or if you are retrieving the data from a database, use the SQL Date-Time functions (RTFM). =dn - Original Message - From: "Rafael Perazzo B Mota" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: 26 January 2002 16:38 Subject: [PHP] Re:[PHP] Changeing Dates.

[PHP] Re: PHP v4.1.1 WDDX problems

2002-02-04 Thread Yasuo Ohgaki
Adam Cassar wrote: > Hi All, > > I am attempting to compiler php v4.1.1 as a fast cgi runner with WDDX. > > I get all the way through the compile and it get's stuck at: > > ./.libs/libphp4.a(wddx.o): In function `php_wddx_push_element': > /usr/local/src/php-4.1.1/ext/wddx/wddx.c:780: undefined

[PHP] RE: [PHP-DB] odbc functions

2002-02-04 Thread Andrew Hill
Richard, Simple example using MS SQL Server: Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access & Data Integration Technology Providers > -Original Message- > From: Richard Black [mailto:[EMAIL PROTECTED]] >

[PHP] Re: PHP Classes and Sessions

2002-02-04 Thread Yasuo Ohgaki
Php-List wrote: > What is the proper way to transfer class properties through-out my pages... > > let's say i have a ShoppingCart Class and i have methods like > addToCart(id, qty) and deleteFromCart(id) > also i have properties like CartItems("id" => array(), "qty"=> array()) > > this is what i

[PHP] Re: PHP module build problem

2002-02-05 Thread Anas Mughal
I just saw a posting on PHPBuilder that states that Apache 1.3.14 has changed alloc.h to ap_alloc.h. So, file renaming is suggested. Maybe that could fix the problem. (I will give it a try...) I would be open to any other suggestions... Thanks. --- Anas Mughal <[EMAIL PROTECTED]> wrote: > I

[PHP] Re: PHP with gd support

2002-02-12 Thread Eric Johnson
> or do I do the configure with > all the other arguements AND --with-gd and then do the > 'make' and 'make install'? Yes, you will have to configure with all the prior options in addition to the --with-gd. A quick way to get your currently compiled options is with the php function phpinfo().

[PHP] Re: PHP & GD - Nevermind! Thanks!

2002-02-13 Thread J Smith
For a site I work for, I've found two decent uses: 0. Our logo is dynamically created on demand. The logo features a random "DNA-blot" distibution and a random wave-like pattern, some like what you'd see in a graphic equalizer on a stereo display. Each time our logo is viewed, it's slightly d

[PHP] Re: PHP & GD - Nevermind! Thanks!

2002-02-13 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > > Thank you to anyone looking into my question, but it is moot; seems the two > scripts I was given initially are just buggy. I found one that isn't, and > it works fine. > > Anyone have any idea what would be a practical application

Re: [PHP] Re: PHP and HTTPS

2002-02-19 Thread Rodolfo Gonzalez
On Mon, 18 Feb 2002, Michael Kimsal wrote: > > on IE on pc a "this page cannot be displayed" error (with possible > > reasons like your browser needs to be set to accept SSL2 and SSL3 [it is > > by the way]) is generated half of the time. the other half it works. > We've worked with this several

Re: [PHP] Re: PHP and HTTPS

2002-02-19 Thread Rodolfo Gonzalez
On Mon, 18 Feb 2002, J Smith wrote: > plaintext, no SSL at all. Useful if you want to keep your password safe > during transmission, but it sucks that everything can't be encrypted. That's the way hotmail works too, f. ex. I guess it's to increase speed. -- PHP General Mailing List (http://w

[PHP] Re: php 4.1.1 vs 4.0.6

2002-02-22 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Ezra Nugroho) wrote: > I am deciding between 4.0.6 and 4.1.1 (or maybe 4.1.2 if it's comming soon). > I heard that there is some significant difference between 4.0.x and 4.1.x > What is the main difference between 4.0.6 and 4.1.1 ? > Are the 4.1

[PHP] Re: php 4.1.1 vs 4.0.6

2002-02-23 Thread John Lim
Cc Zona <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Ezra Nugroho) wrote: > > > I am deciding between 4.0.6 and 4.1.1 (or maybe 4.1.2 if it's comming soon). > > I heard that there is some significant diff

[PHP] Re: [PHP-DEV] SAP DB

2002-02-25 Thread Hartmut Holzgraefe
alex black wrote: > hi all, > > One of the binarycloud developers just told me to have a look at the SAP OS > database, SAPDB. SAP DB is just another name for AdabasD from a programmers point of view- > I'm going to test it tomorrow to see if it actually does what it claims, but > this _looks_

[PHP] Re: php - assigning date variables

2002-02-25 Thread Lerp
Hi there :) 1. mysql_query("SELECT * FROM table WHERE date ='$mydate'"); # where date is same 2. mysql_query("SELECT * FROM table WHERE date > '$mydate'"); # where date is newer 3. mysql_query("SELECT * FROM table WHERE date < '$mydate'"); # where date is older 4.mysql_query("SELECT * FROM t

[PHP] Re: [PHP-DEV] SAP DB

2002-02-25 Thread Alex Black
> SAP DB is just another name for AdabasD from a programmers point of view- Ah, cool. > http://www.php.net/manual/en/ref.odbc.php Well, yes. > " In addition to normal ODBC support, the Unified ODBC functions in PHP allow > you to access several databases that have borrowed the semantics of th

[PHP] Re: php, win32, xml bug?

2002-02-25 Thread J Wynia
The first thing I'd do is run your transformation through one of (or all of) the rest of the XSL engines out there. There's a lot more variability out there in XSL engines. Unfortunately, Sablotron isn't the most conformant of the field. I haven't used Sablotron in a while for XSLT processing so a

[PHP] Re: php, win32, xml bug?

2002-02-26 Thread Alexander Gräf
"J Wynia" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > The first thing I'd do is run your transformation through one of (or all of) > the rest of the XSL engines out there. There's a lot more variability out > there in XSL engines. Unfortunately, Sablo

Re: [PHP] RE: php email question

2002-02-26 Thread DL Neil
Terry, > I am trying to set up a MIME email that would include an HTML and Plain > Text version of content, such that if the recipient's email client did > not understand html or have html disabled, that the content would come > through as plain text, but if html were accepted, the plain text wo

[PHP] Re: php, win32, xml bug?

2002-02-26 Thread J Wynia
If you happen to be running PHP on Windows, you can use the MSXML engine through it's COM interface. Unfortunately, I haven't seen any documentation on plugging any of the other engines into the new (for PHP4.1) XSLT API. So, I don't know of a solution on UNIX (most of my XSLT work is in a Websphe

[PHP] Re: PHP COM with Distiller

2002-02-26 Thread J Wynia
Don't have sample code handy, but you'd create a new Word, Excel or Powerpoint object (depending), and use the print methods of those objects to send it to Distiller. "Kumar" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi All, > > Installed Apache, PH

RE: [PHP] Re: PHP and Java

2002-03-01 Thread Hunter, Ray
, 2002 11:54 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: PHP and Java I used LD_LIBRARYPATH=/usr/local/lib:/usr/java1.2/jre/lib/sparc:/usr/local/lib/php/ modules but the problems 1) PHP Warning: Unable to load dynamic library './libphp_java.so' - ld.so.1: /usr/ local/apache/bin/ht

[PHP] Re: php and form mails

2002-03-04 Thread mojo jojo
Hi Try it like this name="form[gender]" value="male">male name="form[gender]" value="female">female Cheers Mojo [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED].; > I have this simple formmail written out in PHP, and it checks for required > fields before sendin

[PHP] RE: php files on cd

2002-03-05 Thread Rodya Jörn Koester [B2A]
| -Original Message- | From: Ivan Carey [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, March 05, 2002 10:17 AM | Subject: [PHP] php files on cd | | Is it possible to put a mysql & php web site on CD or maybe to | capture the site statically to put it onto cd. Hello, Ivan! Since php

RE: [PHP] Re: PHP and mySQL

2002-03-05 Thread Dan Vande More
;\n"; } } mysql_free_result($result); ?> -Original Message- From: David Robley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 8:29 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: PHP and mySQL In article <180f01c1c403$2ac62820$[EMAIL PROTECTED]>, [EMAIL

[PHP] Re: PHP-Based Authentication Security?

2002-03-06 Thread Michael Kimsal
John Coggeshall wrote: > Hey all.. > > I've got a question -- I'd like to restrict access to entire directories > based on if the user has been authenticated or not. Basically, I'd like > to set up a auto-include *FROM APACHE* to run a PHP script prior to > sending any documents what-so-ever and

[PHP] Re: PHP-Based Authentication Security?

2002-03-06 Thread J Smith
An easier way to do it might be to use HTTP authentication with apache using .htaccess and .htpasswd files, which can be placed in the secure directories. (Or use one global .htpasswd file and have all .htaccess files point to it.) Another possibility would be to set up two PHP scripts, one b

[PHP] Re: PHP vs object.record set

2002-03-07 Thread Michael Kimsal
Rodrigo Peres wrote: > Hi list, > > I'm new to PHP, but I found it greate. But I have a question. Recently I've > saw a friend using asp and the object record set seems perfect, I mean the > function to count records, navigate in throw record (back and forth) > everything automatic is amazing. Th

[PHP] Re: PHP group in spanish

2002-03-11 Thread Angel Fenoy
Frank wrote: > How know a PHP group that is in spanish?. > > Thanks beforehand... > Frank.- http://www.phpes.com/ Saludos Àngel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP based search engine

2002-03-11 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi, > > Does anyone know of a PHP based search engine for a website? I was using > Fluid Dynamics on my site - as I've got some sections of the site in a > MySQL database, and some sections are just static pages. However, it seems

[PHP] Re: PHP based search engine

2002-03-13 Thread Eric Persson
David Robley wrote: > PHP from around 4.05 has functions available to interface with the > mnoGOSearch search engine, available from http://www.mnogosearch.ru/ > > I recommend you look at this combination. I recommend this one to, its a very good alternative which I used for several projects.

[PHP] Re: PHP Document not found

2002-03-16 Thread Ray Hunter
You should try moving to the current version of php and then try it... Ray Hunter "Jan Weidhaase" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi > > If I try to open a non-existing PHP document by my Apache server I got an > internal server error massage.

[PHP] Re: PHP for 3D scatterplots

2002-03-20 Thread Hugh Bothwell
"Simon De Deyne" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > is there any code for this available yet? > I am looking for a way of plotting gif images of objects > in a 3D space... > > thank you! > Simon Don't know of any offhand, but it doesn't sound all

[PHP] Re:[PHP] Auto password generation

2002-03-26 Thread Liam
26/03/2002 9:51:20 PM Random Password : "Denis L. Menezes" <[EMAIL PROTECTED]> wrote on 26/03/2002 11:38:14 AM: > >Hello friends, > >I have a form for registering by the users. This runs on php/mysql. > >Can someone tell me how I could include auto password generation and >emailing of t

[PHP] Re: PHP, DB, images, ODBC

2002-03-27 Thread Cirstoiu Aurel Sorin
You will have to build another page that receive a parameter(let's say the index of the pic from the database) and return the image. In this page you'll have to set the Content-Type first using: header("Content-Type: image/jpeg") or header("Content-Type: image/gif") or header("Content-Type: image/

[PHP] Re:[PHP]imap and POP3

2002-03-27 Thread Jon Farmer
> What I want to do is, check my POP3 server for messages, download those > messages into my MySQL DB. I want to retrieve the FROM, SUBJECT, HEADER and > BODY from the messages and place them in the corresponding mysql fields. This script I wrote last summer may help you some what.. it handles

[PHP] Re: PHP / cgiwrap - weird problem

2002-03-31 Thread jtjohnston
Why are you using cgiwrap? seriously? Are you using an old httpd server and not apache? CGIWRAp from my perling experiences was good for firewalling, keeping users out of areas of your server. But cgiwrap is a pain in the ass for your users. If you have your/their permissions set up right, why

Re: [PHP] RE: PHP/MySQL/XML

2002-04-01 Thread Erik Price
On Monday, April 1, 2002, at 05:09 PM, Jay Fitzgerald wrote: > OkThanks to all those who are helping me (sorry for > cross-posting)... That's okay. This script looks a lot better -- because you can actually -do- something with the output! :) > My scripts are working great except for o

RE: [PHP] RE: PHP/MySQL/XML

2002-04-01 Thread Hunter, Ray
; From: Erik Price [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 01, 2002 4:12 PM > To: Jay Fitzgerald > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] RE: PHP/MySQL/XML > > > > On Monday, April 1, 2002, at 05:09 PM, Jay Fitzgerald wrote: > > > OkThanks to

[PHP] Re: php+java on freebsd

2002-04-03 Thread javier
Ivan Voras wrote: > Can anyone tell me how to get java support for php working? I compiled > apache with -pthread option, I properly configured php.ini > (phpinfo() agrees), but I cannot overcome this: > > (the message appears as a PHP error when trying to create any java objects) > > Fatal erro

[PHP] Re: PHP and DOM XML

2002-04-05 Thread Peter Clarke
"Rarmin" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have one question about operations that can be done with XML. > What I need to do is build a web site which stores some data in XML > files and retrieve that data. It's basically the system that allows

[PHP] Re: [PHP-GENERAL] animated gif

2002-04-05 Thread Jamie Watt
Sounds like you'll have to use PHP to to first create the images. Then in your output page just include some javascript to rotate the images. If you have to you can use PHP to write the javascript. "Jessica Lee Tishmack" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > can you

RE: [PHP] Re: php+myslq+IDE

2002-04-09 Thread Brian Drexler
el Colombo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 5:11 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: php+myslq+IDE go download.com get EditPlus the trial runs up and still works without limit. very cool program "Javier" <[EMAIL PROTECTED]> wrote in messa

[PHP] Re: PHP Sessions/P3P Questions

2002-04-10 Thread Michael Kimsal
Richard Spangenberg wrote: > Hi, > > I am using PHP Sessions in my coding. I have noticed that my cookies work > just fine in MSIE 6.0 if the browser's privacy setting is set to low. > However, in all other settings it is not responding. I bleive this is > because of the P3P privacy setting. I

[PHP] Re: PHP and localhost (newbie!!)

2002-04-10 Thread phplists
Yeah, basically, in your httpd.conf file you specify the DocumentRoot for your Apache installation. Then whatever dirs are below that inherit the AddType(s) and such of the parent. You can add different dirs individually if you want. Just add the following to your httpd.conf file (you can put them

[PHP] Re: PHP & Dynamic XML Pages

2002-04-11 Thread J Smith
I use pretty much the same idea, but PHP isn't used to parse the returned XML. Rather, it just fetches the XML and sends it off to an XSLT processor. Look at the XSLT extension for PHP. You'll likely need to get Sablotron from www.gingerall.com. You'll also have to write an XSL stylesheet to

Re: [PHP] Re: php+myslq+IDE

2002-04-12 Thread Michael Andersson
pleting, and IMHO the autocompleting can > get annoying fast. However I have yet to find anything better. Anyone know > of anything worth while? > > -Original Message- > From: Joel Colombo [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 03, 2002 5:11 PM > To:

[PHP] Re: Php + Mysql Hosting problem

2002-04-12 Thread Michael Andersson
To use php+mysql on spaceports you have to sign up for a cgi-bin account and store your files on that server.. /Micke "Simonk" <[EMAIL PROTECTED]> skrev i meddelandet [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have made a web site containing Php and Mysql script > And I have applied for a

[PHP] Re: PHP MySQL Hosting services

2002-04-13 Thread phplists
http://webpipe.net They seem to be doing good with uptime.. In the last couple months I've been having a monitoring service check them frequently and so far we're at 100%.. Standard Virtual Package ($24.95/mo - $14.95 setup): Linux RedHat 7.1 300mb Disk Space 25 POP3 Accounts 10GB/mo transfer St

[PHP] Re: PHP MySQL Hosting services

2002-04-14 Thread phplists
http://webpipe.net They seem to be doing good with uptime.. In the last couple months I've been having a monitoring service check them frequently and so far we're at 100%.. Standard Virtual Package ($24.95/mo - $14.95 setup): Linux RedHat 7.1 300mb Disk Space 25 POP3 Accounts 10GB/mo transfer St

[PHP] Re: PHP MySQL Hosting services

2002-04-14 Thread Steve
Jennifer Check out Hub.Org Networking services http://www.hub.org They have Virtual Machine that can be configured to your NEEDS without affecting other clients and vice versa. and MANY other features including ssh, ftp, cgi/perl and I believe they have also added MySQL 3.23 to the list. Not

[PHP] Re: PHP MySQL Hosting services

2002-04-14 Thread Vins
Hey. I have the best hosting you can get. for only $46 p/m ALL THIS... a.. 400 MB web space a.. Execution of Custom CGI scripts a.. Support for PERL a.. Support for C and C++ a.. Support for SSI a.. Support for GCC a.. Support for GD a.. Support for 5 independent MySQL Databases Own URL i

[PHP] Re: PHP MySQL Hosting services

2002-04-14 Thread Vins
Hey. I have the best hosting you can get. for only $46 p/m ALL THIS... 400 MB web space Execution of Custom CGI scripts Support for PERL Support for C and C++ Support for SSI Support for GCC Support for GD Support for 5 independent MySQL Databases Own URL in the format Extensive Support Forum 9

[PHP] Re: PHP MySQL Hosting services

2002-04-15 Thread The_RadiX
EMAIL PROTECTED] ABN: 64 235 749 494 Mobile: 0407 122 268 QUT Student #: 04475739 ::: - Original Message - From: "Vins" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 7:12 AM Subject:

[PHP] Re: PHP Shopping Engine Recommendation

2002-04-15 Thread Julio Nobrega Trabalhando
http://www.oscommerce.com/ -- 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 "Robert Collins" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Re: PHP Shopping Engine Recommendation

2002-04-15 Thread phplists
http://woodenpickle.com:8080/shop/admin.php login: shopadmin pass: demo Later, Bob "Robert Collins" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Can anyone recommend a good commercial shopping cart written in php? > > Robert W. Collins II > Webmaster > Ne

[PHP] Re: PHP/MySQL Query Prob

2002-04-15 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hey... new to the list, but didn't have time to lurk and watch the traffic, > kind of in a bind here. I apologize in advance if I do something wrong... > > Using this code: >$link = mysql_connect() >

<    1   2   3   4   5   6   7   8   9   10   >