[PHP] What would you want in a PHP web host?

2001-07-31 Thread Derek Del Conte
I have been developing PHP for a while now, and I am wondering how other developers find their PHP hosting company. So far this has not been an issue for me because I am always in full control of my servers (well, as much control as possible with any web server :), but recently we have begun to h

RE: [PHP] Example high-profile PHP sites

2001-07-31 Thread Ralph Guzman
Incase you still need it. Here is a big one I forgot to mention: http://www.dialpad.com/ Not sure how much of their site is PHP, but their user registration and member backend is PHP driven. -Original Message- From: Ralph Guzman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 1:

Re: [PHP] Share Session Vars on 2 servers

2001-07-31 Thread Philip Murray
Hi Paul, If you have a single database between the 2 servers you could implement your own session handlers using PostgreSQL, Mysql or any other db for that matter. http://php.net/manual/en/function.session-set-save-handler.php Shouldn't be to difficult to do at all I imagine. Hope this helps!

[PHP] mod_perl php4 DBI->connect MySQL bomb segfault solved.

2001-07-31 Thread ard
Apache mod_perl children were segfaulting on this: DBI->connect('DBI:mysql:irrelevant:irrelevant', 'irrelevant', 'irrelevant'); (Literally) I fixed it by recompiling Msql-Mysql-modules against a newer version of the MySQL client library. If you are suf

[PHP] Share Session Vars on 2 servers

2001-07-31 Thread Paul R. Jackson
I have developed a well tested password protection system using session vars. We have 2 web servers with half of our pages on each (for reasons I wont go into). What I need to be able to do is have a single login that would then work on both servers. Which basically means sharing session vars on 2

[PHP] MAgic Quotes

2001-07-31 Thread Ralph Guzman
How do you turn on/off magic quotes through .htaccess? Is it this posible? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP]REPOST: DB logic help...

2001-07-31 Thread Chris Cocuzzo
thanks jon. I think that's a step in the right direction. I've included a sample of the HTML of the links page so you can get a better idea as to how i want things to look. Your code below looks awesome, the only thing I was curious about though was that it would create a table with only one colum

Re: [PHP] Re: Content Management Systems

2001-07-31 Thread Marty Landman
>"Ralph Guzman" <[EMAIL PROTECTED]> wrote in message > > I am looking for new alternatives in web development and maintenance. > > Anybody have any suggestions or comments on any open source/commercial > > PHP+mySQL based CMS programs? You could check out my web-based CMS SIMPL. It's written in

[PHP] dynamic variable names?

2001-07-31 Thread Matthew Delmarter
I'll try again... my explanation of my exact problem was not too good last time :P I am working with the following code: $text = "##firstname##"; $text = ereg_replace("##([^#]+)##", $row["\\1"], $text); $row[] is a result of using mysql_fetch_array. I would expect it to replace

[PHP] Re: Content Management Systems

2001-07-31 Thread Gaylen Fraley
Have you tried http://www.hotscripts.com/PHP/Scripts_and_Programs/Content_Management/ -- Gaylen "Ralph Guzman" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, > > I am looking for new alternatives in web development and maintenance. > Anybody have any

[PHP] Content Management Systems

2001-07-31 Thread Ralph Guzman
Hello, I am looking for new alternatives in web development and maintenance. Anybody have any suggestions or comments on any open source/commercial PHP+mySQL based CMS programs? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] Re: include_once vs require_once

2001-07-31 Thread Philip Olson
Yes, this is essentially true. Zeev posted this to the list awhile ago, see the following : http://www.faqts.com/knowledge_base/view.phtml/aid/6/ Essentially the difference now is the type of error that's produced, one being a warning (include) while the other being FATAL! (require). Regards

Re: [PHP] dynamic variable names?

2001-07-31 Thread Matt Kaufman
Nevermind, I forgot about variable variables. Matt Kaufman - Original Message - From: "Matt Kaufman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 10:43 PM Subject: Re: [PHP] dynamic variable names? > I don't know if this is what you want, but take a look at

Re: [PHP] dynamic variable names?

2001-07-31 Thread Matt Kaufman
I don't know if this is what you want, but take a look at http://www.php.net/manual/en/language.variables.php - You may want to assign them by reference? Matt Kaufman - Original Message - From: "Matthew Delmarter" <[EMAIL PROTECTED]> To: "PHP Mailing List" <[EMAIL PROTECTED]> Sent: Tues

RE: [PHP] dynamic variable names?

2001-07-31 Thread Matthew Loff
RTFM... Read the Fabulous Manual. :) ha ha... It's possible, and downright easy. http://www.php.net/manual/en/language.variables.variable.php -Original Message- From: Matthew Delmarter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 10:58 PM To: PHP Mailing List Subject:

[PHP] dynamic variable names?

2001-07-31 Thread Matthew Delmarter
Is it possible to dynamically assign a variable name? For example: variable name is $var_."name" or $var_."$name" Regards, Matthew Delmarter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

[PHP] Problem Loading php4 module

2001-07-31 Thread Mark Cannata
Hello, I'm trying to get php 4 to work with MySQL and Apache. I can't seem to get the module to load in Apache. In the httpd.conf file the path was shown as lib/apache/libphp4.so. This directory didn't exist so I changed the path to modules/libphp4.so. When I try to restart the server I get th

Re: [PHP] Re: include_once vs require_once

2001-07-31 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Mike Cullerton) wrote: > so the difference is _when_ they happen. > > ok, another question then. > > if my script includes the line > require_once($file); > > and $file contains the line > include_once($other_file); > > what happens then?

RE: [PHP] Sorry... but a good PHP editor for Linux/Unix

2001-07-31 Thread Ben Bleything
I can't speak for terminal usage... I use pico and or vi... pico on console, vi over ssh. When working locally, I use nedit (www.nedit.org) on *nix (with custom PHP syntax highlighting) and EditPlus on windows. Good luck, Ben -Original Message- From: Augusto Cesar Castoldi [mailto:[EMAI

[PHP] Sorry... but a good PHP editor for Linux/Unix

2001-07-31 Thread Augusto Cesar Castoldi
Sorry about talking about this subject, but a really wanna know if any one nows a good editor for linux/unix. Sometimes I need to work by SSH and I have to use the program pico. I can't use vi, to use it, i'll need to see the manual!! thanks, Augusto -- PHP General Mailing List (http://www

Re: [PHP] Re: include_once vs require_once

2001-07-31 Thread mike cullerton
cool, so the difference is _when_ they happen. ok, another question then. if my script includes the line require_once($file); and $file contains the line include_once($other_file); what happens then? :) thanks, mike on 7/31/01 6:57 PM, Andrew Sterling Hanenkamp at [EMAIL PROTECTED] wrote

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Tim Thorburn
Ok, I've been following this thread for the last few minutes ... and I have to wonder what is this list for if not to ask questions, thereby learning. Yes there's tons of different resources online, yup, that would mean this is one too. If you don't want to waste your time and read a question

Re: [PHP] NuSphere.. what is it???

2001-07-31 Thread Roy Wilson, Jr.
Support mainly. Also, each package is different in what it includes, you should take a look at the details for more information. -Roy On Sunday 29 July 2001 20:07, Christian Dechery wrote: > What's the deal with that NuShere stuff... I visited their website and > download a Free version (40MB)

[PHP] Install problem

2001-07-31 Thread dave
Hello All, I'm installing php 4.0.5 with apache 1.3.20 set everthing up as per instructions when I restart apache I get [root@tomcat php-4.0.5]# /usr/local/apache/bin/apachectl start Syntax error on line 205 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/libphp4.so i

[PHP] Re: include_once vs require_once

2001-07-31 Thread Andrew Sterling Hanenkamp
Did you look at the difference between include() and require()? Basically, as I understand it, require() and require_once() are replaced during parsing--before code execution. And include() and include_once() are replaced during code execution. Thus, a required file is always imported into the

[PHP] include_once vs require_once

2001-07-31 Thread mike cullerton
hey folks, i'm wondering about the difference between include_once and require_once. the manual says The require_once() statement replaces itself with the specified file The include_once() statement includes and evaluates the specified file so, what is the difference? it's almost like one

[PHP] Re: Syntax Error On Line 1

2001-07-31 Thread Andrew Sterling Hanenkamp
Uh...this is just a guess, but could it be the line endings are confusing PHP? Perhaps you have DOS formatted files in Unix or Unix files in DOS or Mac files in DOS or DOS files in Mac or ...you get the idea... That is, in DOS lines are ended by \n\r, in Unix by \n, and in Mac by \r. Lacking t

RE: [PHP] Trouble creating a list on months

2001-07-31 Thread Matthew Loff
Oops! I forgot to include the parameter... function month_select($month) { echo "\n"; $month_names = array(1 => "January", 2 => "February", 3 => "March", 4 => "April", 5 => "May", 6 => "June", 7 => "July", 8 => "August", 9 => "September", 10 =>

RE: [PHP] Trouble creating a list on months

2001-07-31 Thread Matthew Loff
Try this: function month_list() { echo "\n"; $month_names = array(1 => "January", 2 => "February", 3 => "March", 4 => "April", 5 => "May", 6 => "June", 7 => "July", 8 => "August", 9 => "September", 10 => "October", 11 => "Novemb

[PHP] Re: also window.open(javascript)

2001-07-31 Thread Andrew Sterling Hanenkamp
Javascript occurs on the client side, so the second page you are opening will not be passed the file. If you are going to try and pass the file like this you could try saving the file to disk temporarily in the first PHP script. Then, pass an identifier to the file in the query string of windo

[PHP] Re: Sort by bigger count(*)

2001-07-31 Thread Andrew Sterling Hanenkamp
Unless you've used GROUP BY you'll only return one row. I think that something like SELECT x, count(y) FROM table GROUP BY y ORDER BY count(y); Ought to work. Later, Sterling Elias wrote: > Hello, > > I made a query that uses count(*) > now how can i get the results sorted following the big

[PHP] Re: Regex question

2001-07-31 Thread Andrew Sterling Hanenkamp
You're making your expressions too complicated. To test for just that string, eregi("HTTP/1\.[01] 302", $output) should work. Later, Sterling Boaz Yahav wrote: > I'm trying to find if a string exists inside a string. Instead of using > strstr() twice I want to use eregi() once. > > What I w

Re: [PHP] Failure Configuring 4.0.6 on SuSE 7.1

2001-07-31 Thread Andreas D . Landmark
On Tue, Jul 31, 2001 at 11:43:44AM -0400, Chris Anderson produced this golden nugget: > When I try and configure php 4.0.6 I get the following msg: > > checking for flex... lex > checking for yywrap in -ll... no > checking lex output file root ... ./configure: lex: command not found > configure:

[PHP] Trouble creating a list on months

2001-07-31 Thread Mario A. Salinas
Hello everyone, This is my first posting. I'm hoping someone can help figure this out. I'm using a GNU licensed calendar but there is a bug in it's process for building a list of months. The list is supposed to build a list of months starting with the current month and adding 11 months to t

Re: [PHP] Java Jock - 1st line syntax

2001-07-31 Thread Brian White
Well, maybe the code is all on one line! I remember another time when I was getting all the errors being on one line when validating SGML documents. It turned out that the problem was that they had been created on a Mac, and the validator was getting confused by only only having Ctrl-M for a line

Re: [PHP] in_array() with associate array?

2001-07-31 Thread Brian White
in_array is for testing that a value exists in an array. What you want is if ( isset( $some_array[some_key] ) ) print "HAS KEY"; else print "DOESN'T HAVE KEY"; At 14:23 31/07/2001 -0400, Jaxon wrote: >hi, > >in_array is confusing me :) > >can someone show me an example of how to test if

RE: [PHP] Visual Login

2001-07-31 Thread Ben Bleything
One way would be to use a database (of any type) to store username/password data, present the user with a form to fill out, authenticate against the database, set session variable if they are valid, and let them use the application.. if they fail, do whatever. => EXTREMELY brief. Can give more

[PHP] Re: Readline and/or split by line break

2001-07-31 Thread Gaylen Fraley
http://www.php.net/manual/en/function.file.php "Karl J. Stubsjoen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > GlacierHello, > I'm reading a file into memory and I'd like to split each of the individual > lines into an array. How would I do this? > Thanks,

[PHP] Readline and/or split by line break

2001-07-31 Thread Karl J. Stubsjoen
GlacierHello, I'm reading a file into memory and I'd like to split each of the individual lines into an array. How would I do this? Thanks, Karl J. Stubsjoen www.iexcelinlife.com [EMAIL PROTECTED] Phone: 602.447 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] Re: Attitude of B van Ouwerkerk

2001-07-31 Thread Tom Malone
I have to agree with Phil and Mr. van Ouwerkerk. I am a newbie too, and while we may miss things in the manual that are obvious to more experienced programmers, or ask questions that have been asked and answered in the list over and over again (guilty here!), I believe an attempt should at leas

Re: Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread Data Driven Design
Is the error coming from a mysql_query() line or a mysql_select_db() line? Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: CGI GUY <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tues

[PHP] Re: Trying to avoid code exploits..

2001-07-31 Thread Yasuo Ohgaki
"Meir Kriheli" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > I need another pair of eyes to see if I've overlooked something. SNIP > so > '{pass1}=={pass2}' > > is converted to > '$GLOBALS['pass1']==$GLOBALS['pass2']' > > When to form is validated I'm

Re: Fwd: Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread Alexander Wagner
CGI GUY wrote: > " Access denied for user: 'username@hostname' to > database 'tablename' " > > 1. The uid/password set I am using has full > privileges. > 2. *tablename* is not a database (the code I listed in > my previous email is syntactically identical to the > script)-- it's a table. > > Why

RE: [PHP] Counting Multidimensional Arrays, Solution Found

2001-07-31 Thread Johnny Nguyen
Nevermind. I Found the solution. $m, $y, and $d must be cast to integers. -Original Message- From: Johnny Nguyen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 3:58 PM To: [EMAIL PROTECTED] Subject: [PHP] Counting Multidimensional Arrays Given

[PHP] Visual Login

2001-07-31 Thread Steve Wright
How can i go about doing a visual login on a web page... instead of the pop up window i have at the min like with .htaccess ?? I apologize if this is in the manual, but i couldn't see it Kind Regards, Steve

[PHP] Counting Multidimensional Arrays

2001-07-31 Thread Johnny Nguyen
Given // $Events[2001][07][31][0] = new ZEvent("Some Event 0", "Some Description 0", "07-31-2001"); $Events[2001][07][31][1] = new ZEvent("Some Event 1", "Some Description 1", "07-31-2001"); $Events[2001][07

Fwd: Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread CGI GUY
Okay, well I used the mysql_error() print-out, and it returned something weird: " Access denied for user: 'username@hostname' to database 'tablename' " This is incongruous because: 1. The uid/password set I am using has full privileges. 2. *tablename* is not a database (the code I listed in my

RE: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Matthew Loff
I agree with the "try to answer your own question first" theory that you propose... I have used PHP for almost 2 years now, and just subscribed to this list a month or two ago, but have yet to ask a single question... But I realize we're all at different skill levels, and so far, I haven't done

Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread mike cullerton
on 7/31/01 4:10 PM, CGI GUY at [EMAIL PROTECTED] wrote: > Is there anything (add. parameters, etc.) that I'm > missing that would possibly explain why the following > code won't execute? >in FROM table_name.column_name1,table_name.column_name2 table_name.column_name1 is a column, but "FROM" e

[PHP] ./buildconf error

2001-07-31 Thread Robert Borden
I am getting this error when tring to ./buildconf buildconf: checking installation... buildconf: autoconf version 2.50 (ok) buildconf: automake version 1.4-p5 (ok) buildconf: libtool version 1.4 (ok) WARNING: automake and libtool are installed in different directories. This may cause acl

Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread mike cullerton
or, echo $sql and copy/paste it into an sql client and see what it tells you. on 7/31/01 4:21 PM, Philip Olson at [EMAIL PROTECTED] wrote: > Try putting mysql_error() in your die statements so : > > or die(mysql_error()); > > and see what it tells you. > > Regards, > Philip > > > On Tue, 31

[PHP] Re: Types of table....

2001-07-31 Thread James, Yz
Hello Steve, well, you should have the table set, at the very least, something like this: UserId - INT, Primary Key, Auto increment RealFName - varchar(20) RealLName UserName - Varchar (20) PassWord - Varchar (12) The length of the fields is optional, and you should perform checks on the userna

Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread Philip Olson
Try putting mysql_error() in your die statements so : or die(mysql_error()); and see what it tells you. Regards, Philip On Tue, 31 Jul 2001, CGI GUY wrote: > Is there anything (add. parameters, etc.) that I'm > missing that would possibly explain why the following > code won't execute? >

Re: [PHP] Execute mixed php code from mysql?

2001-07-31 Thread mike cullerton
the way i have solved this is to have another column of data_type. switch ($data_type) { case "php": exec($data); break; case "html": include($data); break; } mike on 7/31/01 3:24 PM, Kyle at [EMAIL PROTECTED] wrote: > For example I have in a database: > ---

Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread Alexander Wagner
CGI GUY wrote: > Is there anything (add. parameters, etc.) that I'm > missing that would possibly explain why the following > code won't execute? What does it say? Any errors? Are any of your messages printed? regards Wagner -- Madness takes its toll. Please have exact change. -- PHP General

[PHP] dumb mysql_connect issue

2001-07-31 Thread CGI GUY
Is there anything (add. parameters, etc.) that I'm missing that would possibly explain why the following code won't execute? Thanks in advance. This mailing list rules!!! __ Do You Yahoo!? Make international calls for as low as $.04/minute with

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Alexander Wagner
B. van Ouwerkerk wrote: > Ask yourself.. who has an attitude problem here.. Someone who didn't > read the manual.. or someone (/me) who wrote to RTFM. You didn't even RTFM him. I found it to be more like RTM, the more gentle version (the one without words connected to sexual intercourse). Your a

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Kyle Smith
Yes, i did download the manual the reason why i come here first is cause when i ask people who know it alread yi know i will get a straight answer and people will put it in a more understandable way then a lot of the tutorials -lk6- http://www.StupeedStudios.f2s.com Home of the burning lego

[PHP] Types of table....

2001-07-31 Thread Steve Wright
HEy, I am still a newbie, and have no idea how to use phpMyAdmin yet, and don't really know much about MySQL databases and setting up tables. My Question:What table type should i use for a users REAL NAME, USERNAME, PASSWORD, how long should i set these to, and should i have anything else

[PHP] Execute mixed php code from mysql?

2001-07-31 Thread Kyle
For example I have in a database: - In database: welcome -- Also in Database: --- Now how could i make it so that I have another page that has the following: index.php - Jump out and have some

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread B. van Ouwerkerk
Let me give just one reply.. I did read them all.. I don't hate Kyle Smith /me rather uses the energy needed to hate in a positive way.. Like to write docs for an opensource project. Did a rewrite once.. Phil Driscoll.. you win. I'm Dutch. No I don't have time to go a few times over my mail j

[PHP] buildconf

2001-07-31 Thread Robert Borden
I am getting this error when tring to ./buildconf rebuilding configure ./aclocal.m4:929: error: m4_defn: undefined: _m4_divert_diversion ./aclocal.m4:472: PHP_SUBST is expanded from... ./aclocal.m4:929: the top level rebuilding main/php_config.h.in autoheader: error: shell error while sourcing /t

[PHP] path_info

2001-07-31 Thread DMS
I am running win2k sp1. The following code works with php 4.0.3 installed however fails with versions php 4.0.5 and 4.0.6. Any assistance would be appreciated "; echo $HTTP_SERVER_VARS["PATH_INFO"]; ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTE

Re: [PHP] issues with __sleep() and __wakeup()

2001-07-31 Thread mike cullerton
on 7/31/01 1:48 PM, scott [gts] at [EMAIL PROTECTED] wrote: > I am having a problem with __sleep(); > there mere existance of it is causing my object > to not get serialized at all. __wakeup() works fine. > > i am using PHP v4.0.6 / apache / win2k. > > If i keep __sleep() in the object, it wil

Re: [PHP] NuSphere.. what is it???

2001-07-31 Thread Werner Stuerenburg
innodb tables, too. See mysql documentation on table types. You can choose any type for any table in yur database and change the type of the table on the fly. Alexander Wagner schrieb am Montag, 30. Juli 2001, 13:20:55: > Kraa de Simon wrote: >> I agree on most parts, but is there "transaction s

RE: [PHP] Flash question, but includes variables!

2001-07-31 Thread Jeff Pearson
You need to define the variable early in the movie. Then you simply put the field name with the {} symbols and it will be replace by what the variable value is. In your example, you would put in the text area Hi, {NAME} whats up? In the properties for that text object you also need to make sure it

Re: [PHP] references... found it

2001-07-31 Thread Philip Olson
Just for the sake of completing this thread, variable functions can be read about here : http://www.php.net/manual/en/functions.variable-functions.php Regards, Philip On Tue, 31 Jul 2001, scott [gts] wrote: > im sorry, but i was trying to do that the hard > way. i figured out how to execut

Re: [PHP] references

2001-07-31 Thread Alexander Wagner
scott [gts] wrote: > i've been reading over the docs on references, and i > can't see anyway to pass around functions as references. > i know how to do this easily with perl, but i cannot > seem to find the correct syntax for creating a reference > to a function in PHP. >[..] > any and all help is

[PHP] Flash question, but includes variables!

2001-07-31 Thread Kyle Smith
Anybody who knows flash 5 please help me (sorry to post in a PHP list) I have a variable named NAME, later in the game how do i make a dynamic text field say something like Hi, NAME whats up? -lk6- http://www.StupeedStudios.f2s.com Home of the burning lego man! ICQ: 115852509 MSN: [EMAIL PROTE

[PHP] references... found it

2001-07-31 Thread scott [gts]
im sorry, but i was trying to do that the hard way. i figured out how to execute a function name in a variable. $x ="test"; print "Hello: $x\n\n"; $x(); function test() { print "yee haw"; } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Ezra Nugroho
I don't think this is just crap. Not everyone keeps up with the manual (too bad) and sending stuff to the list is just the convenient thing do. As the list grows, there will always be new newbies, there will be questions that have been asked before. Long term users might get annoyed. I think w

RE: [PHP] Re: What tools do you use to develop PHP?

2001-07-31 Thread Dave
Homesite and Dreamweaver work well together. Not light on the pocket though. Initially they were pretty rough with PHP support, but enough people griped I guess, latst versions are handy enough. Especially like switching back and forth feature built in to work with both applications at once. Da

RE: [PHP] HELP!! What wrong with this code...

2001-07-31 Thread Dave
You have received a number of responses on this. Here is another. When assigning text or html in a variable (or for echo) it is generallly a good idea to use single quotes and exit for variable insertion. That way you don't have to worry about missing one or two errant HTML wuotes. For example

RE: [PHP] FAQ

2001-07-31 Thread Philip Olson
A PHP faq resource : http://php.faqts.com/ Regarding an "official" faq, searching the archives works pretty well. Here's a great place to start (one of many places php-general is archived) : http://marc.theaimsgroup.com/?l=php-general Or actually, google archives everything forever : h

[PHP] references

2001-07-31 Thread scott [gts]
i've been reading over the docs on references, and i can't see anyway to pass around functions as references. i know how to do this easily with perl, but i cannot seem to find the correct syntax for creating a reference to a function in PHP. what i'd like to do is something like this: // X is no

[PHP] PHP snapshot & librecode problem

2001-07-31 Thread Jan Pavlík
Hi, I have problem to configure php with librecode, always it ended with this error: configure: error: I cannot link librecode (-L../recode/lib -lrecode). Is it installed? My configuration: ./configure --prefix=/www/php --with-apache=../../apache-1.3.20 \ --enable-gd-imgstrttf --enable-ftp --with

Re: [PHP] If Failing - Very strange

2001-07-31 Thread Matt Kaufman
I'm not sure, but don't you do something with endif(); ? Matt Kaufman - Original Message - From: "Mitch Vincent" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 12:57 PM Subject: [PHP] If Failing - Very strange > Could someone explain this? > >if( $fCredi

[PHP] issues with __sleep() and __wakeup()

2001-07-31 Thread scott [gts]
I am having a problem with __sleep(); there mere existance of it is causing my object to not get serialized at all. __wakeup() works fine. i am using PHP v4.0.6 / apache / win2k. If i keep __sleep() in the object, it will not serialize, but if i remove it, it serialized fine. Does anyone know

RE: [PHP] FAQ - was "Attitude of B van Ouwerkerk"

2001-07-31 Thread JR
How I view this subject as a Newbie I don't care about attitudes, language, remarks, or anything of this nature. What I do care about is having a place where I can ask stupid questions (Most of the time) intelligent question (whenever possible) and get an answer. Someday when I can understand t

[PHP] emailing the contents of a form in PDF format

2001-07-31 Thread Don
Hi, This may be beyond the scope of this list but if I don't ask, I'll never know :) I have a form page with a button at the bottom. When the user clicks on the button, I wish the following to happen: 1) Prompt the user for a target e-mail address. 2) Create a PDF document from the form fields

Re: [PHP] Another simple question (dont hurt me)

2001-07-31 Thread Matt Kaufman
Use the mail() function. http://www.php.net/mail Matt Kaufman - Original Message - From: "Kyle Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 31, 2001 8:33 PM Subject: [PHP] Another simple question (dont hurt me) In php, oh wait well this is really 2 questions..

[PHP] Another simple question (dont hurt me)

2001-07-31 Thread Kyle Smith
In php, oh wait well this is really 2 questions.. 1 in a form how do i make it email a file to someone, and the second how do i make it get recieved as an attatchement...? -lk6- http://www.StupeedStudios.f2s.com New address new site ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM: legokille

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Kyle Smith
ok just cut the crap now and get back to whats really important, helping people!!! -lk6- http://www.StupeedStudios.f2s.com New address new site ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM: legokiller666 - Original Message - From: "Johnson, Kirk" <[EMAIL PROTECTED]> To: "php" <[EMAIL

RE: [PHP] FAQ - was "Attitude of B van Ouwerkerk"

2001-07-31 Thread scott [gts]
An actual "Question and Answer" FAQ is probably not necessary, since there are so many other good information resources out there already, but what seems to be necessary is to provide newbies with a current list of some really good PHP-related sites. (like http://php.net/function -- i use it ever

RE: [PHP] Re: HELP!! What wrong with this code...

2001-07-31 Thread Jack Dempsey
Another solution that some may prefer is the here doc method: Instead of: php; code; here; ?> Your feedback has been sent to Your feedback has been sent to mailto:$address";>$name EOF; Php; code; here; That way you avoid the escaping of quotes, and the multiple flips in and out of php...its ju

RE: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Johnson, Kirk
Not for this list specifically, and not as well used as it might be ;) http://www.php.net/manual/en/faq.php Kirk > what is up with a faq for this list? is there one? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

RE: [PHP] RE: php_oci8.dll

2001-07-31 Thread scott [gts]
try using: extension_dir = c:\php\extensions that's what i use on my Win32 machine with an identical install as Liviu. > -Original Message- > From: Liviu Popescu2 [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 31, 2001 11:12 AM > To: [EMAIL PROTECTED] > Subject: [PHP] RE: php_oci8.dll

RE: [PHP] FAQ...was - Attitude of B van Ouwerkerk

2001-07-31 Thread Jeff Lewis
I'd be happy to host one but I imagine there is one already for the list? Jeff > -Original Message- > From: mike cullerton [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 31, 2001 3:08 PM > To: php > Subject: Re: [PHP] Attitude of B van Ouwerkerk > > > on 7/31/01 12:37 PM, scott [gts] a

RE: [PHP] Re: HELP!! What wrong with this code...

2001-07-31 Thread scott [gts]
or, if you're going to be dealing with a lot of data that has lots of quotes in it, you could take the safe route and just exit out of PHP mode lots of times, it's easier than escaping every single " php; code; here; ?> Your feedback has been sent to -Original Message- > From: Inércia S

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread mike cullerton
on 7/31/01 12:37 PM, scott [gts] at [EMAIL PROTECTED] wrote: > there's a fine line between being terse and being nasty. > > please don't misinterpret this, but i think that we > could all benefit from being less sensitive of the > style each of us express ourselves in... once again, scott, you

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Phil Driscoll
I've just looked at his emails for the last week, and he is a helpful guy! Not only is he helpful, I'll wager he's being helpful in a language that's not his native tongue, so it's utterly unreasonable to expect the subtle 'gentle' idioms that you might get from a native speaker who had plenty

RE: [PHP] Question on Commercial Offerings

2001-07-31 Thread scott [gts]
and not to mention that almost any form of script protection or source-code encryption can be broken with minimal effort... you'd probably be wasting valuble time trying to protect your scripts that you could better spend improving and maintaining the code. IMO: it's better to spend your time wor

RE: [PHP] Failure Configuring 4.0.6 on SuSE 7.1

2001-07-31 Thread scott [gts]
it seems that your 'lex' is in a non-standard place, and cannot be found in your PATH. make sure you have 'lex' on your machine, find out where, then open up the Makefile and change it's path to lex to the correct one. > -Original Message- > From: Chris Anderson [mailto:null@YAST_ASK] >

RE: [PHP] fopen not opening url

2001-07-31 Thread scott [gts]
i wish i could help you out, but i tried your code (below) and it worked perfectly... i'm running PHP Version 4.0.4pl1 on a Windows 2000 box. perhaps it isn't the fopen() that's failins. $x = fopen("http://p.moreover.com/cgi-local/page?c=Music%20business%20news&o=xml","r";) or die("Canno

RE: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread scott [gts]
there's a fine line between being terse and being nasty. please don't misinterpret this, but i think that we could all benefit from being less sensitive of the style each of us express ourselves in... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Christopher Allen
PhP'ers I would suggest that people not think too hard about this and continue programming. Thats right get back to work...:) Have Fun! --ccma -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

RE: [PHP] Re: What tools do you use to develop PHP?

2001-07-31 Thread scott [gts]
TextPad is my personal favourite, but i've also tried ConTEXT and PHP Coder and liked them a lot, so i'd recommend that you check out all three of them. TextPad: http://textpad.com/ PHP Coder: http://synedit.sourceforge.net/ ConTEXT: http://www.fixedsys.com/context/ > -Original Message-

Re: [PHP] Re: Realm Auth Via Non-Sessions

2001-07-31 Thread Christopher Allen
Day late and a dollar short bro! But thanks anyways. > > When the browser quits, it loses its memory of your username/password. > > That's all there is to it. > Also, I was reading somewhere last week at some hosting companies website that they stream http?? What is that? Is it a gimmick? Or does

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Justin Farnsworth
This is not to condone discourtesy, but the key to this complaint is "being on the list for a while". In the everyday friction of life, terse emails are easily misinterpreted. I happen to feel that van Ouwerkerk's reponse is not "disgraceful", and attributing it to his "attitude" is a leap of t

Re: [PHP] Attitude of B van Ouwerkerk

2001-07-31 Thread Kyle Smith
im gonna stay neutral in this conversation even though i know B Van hates my guts! But hey, im a newbie and yes i do need a kick start, but he doesnt have to be such a moody git. -lk6- http://www.StupeedStudios.f2s.com New address new site ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM: legokill

  1   2   3   >