RE: [PHP] ^M at the end of each line when I use php to write file

2002-10-31 Thread Brandon Orther
Hello, For anyone else that had a problem with ^M use this function: str_replace(\r, , $result); Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com

[PHP] Validating E-mail Accounts

2002-10-31 Thread Robert Miller
Is it possible, or (even better) do you have a sample script that can take a user-submitted e-mail address, contact the host, and verify that the account exists? Thanks, Rob

[PHP] strange echo() effect

2002-10-31 Thread Mat Harris
I have a small piece of code which does the following: 1) call a function to print an html header, 2) query a database to list the users in the db, 3) print an html footer. problem is it print out the footer before the table, even though it is called after. looking at the html source of the page

[PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread DonPro
Hi, I have a form where the user enters some information. For a particular section of the form, I'd like the user to be able to save what he/she entered so that the next time they feel out the form, they can recall without the need to retype. This is not for the entire form but only for a few

[PHP] Re: strange echo() effect

2002-10-31 Thread BAROILLER Pierre-Emmanuel
You've forgotten the /table in your echo... html_header() and html_footer() put html in the right place in your page but, like you haven't close your table tag, the footer dans be everywhere in your page (depends on the web browser you're using).. Regards, P.E. Baroiller I have a small piece of

Re: [PHP] Validating E-mail Accounts

2002-10-31 Thread 1LT John W. Holmes
Scripts that do this, if they work, usually take quite a while to process. It's better to just send the user an email and have them respond back by clicking on a link. ---John Holmes... - Original Message - From: Robert Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

RE: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread Jay Blanchard
[snip] I created a button called Memorize but how do I have the page save the values to my MySQL database when the user clicks on the button. I understand that I can only use JavaScript to trap the OnClick() function and not PHP but I cannot use JavaScript to write to a MySQL table. I do not

[PHP] Re: Validating E-mail Accounts

2002-10-31 Thread DonPro
Most mail servers have the verify command disabled these days, so it makes almost impossible to validate. Blame spammers for ruining everything. But here's a class that will attempt to do what you wish: http://www.phpclasses.org/browse.html/package/13.html - Original Message - From:

Re: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread Sascha Cunz
Hi, Hi, I have a form where the user enters some information. For a particular section of the form, I'd like the user to be able to save what he/she entered so that the next time they feel out the form, they can recall without the need to retype. This is not for the entire form but only

[PHP] Help with using phpmailer

2002-10-31 Thread Pushpinder Singh Garcha
Hi All I am new in the php development world. I have made a simple mail application using the phph mail() function. I needed to use an attachment facility ith the mailing program...so I have tried to use this solution called phpmailer() from http://sourceforge.net/projects/phpmailer I am not

RE: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread Jay Blanchard
[snip] But how do I submit to a PHP script without moving off of the form? The user will be entering lots of information while only a particular section pertains to the Memorize button. If the user clicks on the button, wont it move off of the page thereby causing the user to lose all their form

Re: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread Don
- Original Message - From: Jay Blanchard To: 'DonPro' ; 'php list' Sent: Thursday, October 31, 2002 3:43 PM Subject: RE: [PHP] Saving form input fields to MySQL br clicking on a button [snip] I created a button called Memorize but how do I have the page save the values to my MySQL

[PHP] using mysql_field_type to disginguish between a blob and a text field.

2002-10-31 Thread John Meyer
I've recently found out that mysql returns blob for both blobs and text fields. Now, how do I distinguish between the two? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread PHP List
Why not use the Memorize button to set a hidden field? Or just use a check box. Since you are going to be submitting the data anyway, save the fields at that time depending on whether or not the check box/hidden filed is set? Hi, I have a form where the user enters some information. For a

[PHP] SQLInsert and recover the ID

2002-10-31 Thread Christian Ista
Hello, In a table, I have some fields and the primary key is an autoincrement field. I insert an row and I'd like to recover the ID used for the last record I inserted. For the moment, I do a select max(Id) just after the insert but there is, my be a best way to do it. Thanks for your help

Re: [PHP] Saving form input fields to MySQL br clicking on a button

2002-10-31 Thread DonPro
These two ideas, I really like. Saves me lots of coding Thanks, Don - Original Message - From: PHP List To: php ; DonPro Sent: Thursday, October 31, 2002 4:09 PM Subject: Re: [PHP] Saving form input fields to MySQL br clicking on a button Why not use the Memorize button

Re: [PHP] Re: strange echo() effect

2002-10-31 Thread Mat Harris
DOH! tail-betweek-legs think i'll keep myself to myself from now on /tail-betweek-legs On Thu, Oct 31, 2002 at 09:32:41PM +0100, BAROILLER Pierre-Emmanuel wrote: You've forgotten the /table in your echo... html_header() and html_footer() put html in the right place in your page but, like

Re: [PHP] SQLInsert and recover the ID

2002-10-31 Thread Chase Urich
Check out mysql_insert_id() For the moment, I do a select max(Id) just after the insert but there is, my be a best way to do it. -- Linux: Because rebooting is for adding hardware. Fingerprint = CE24 057D 1E88 A253 3196 89DB 9FF0 9EF0 2F70 8BE8 BE8 signature.asc Description: This is a

Re: [PHP] Is there an ISP that supports GD Library 2.0?

2002-10-31 Thread R . Z .
Signature Hosting from Verio did last time I phpinfo them(today that is) here is the dump: gd GD Support enabled GD Version 2.0 or higher FreeType Supportenabled FreeType Linkagewith freetype T1Lib Support enabled JPG Support enabled PNG Support enabled WBMP

[PHP] help needed with phpmailer

2002-10-31 Thread Pushpinder Singh Garcha
Hi All I am new in the php development world. I have made a simple mail application using the phph mail() function. I needed to use an attachment facility ith the mailing program...so I have tried to use this solution called phpmailer() from http://sourceforge.net/projects/phpmailer I am not

[PHP] Good form class?

2002-10-31 Thread Leif K-Brooks
I'm looking for a good class to manage forms. It doesn't need to do anything with the form itself, I'm looking for something that does form validation on the processing side. I've looked on phpclasses, but everything I found was either insecure (passing data about the form through hidden

Re: [PHP] Dear all

2002-10-31 Thread R . Z .
http://www.php.net/mailing-lists.php there is an option to subscribe/unsubscribe Please how can I unsubscribe from this mailing list ... Thanks Regards Saif Yousif No God except AllahMohammed is profit of Allah

Re: [PHP] Good form class?

2002-10-31 Thread Chris Boget
I'm looking for a good class to manage forms. It doesn't need to do anything with the form itself, I'm looking for something that does form validation on the processing side. I've looked on phpclasses, but everything I found was either insecure (passing data about the form through

Re: [PHP] SQLInsert and recover the ID

2002-10-31 Thread 1LT John W. Holmes
In a table, I have some fields and the primary key is an autoincrement field. I insert an row and I'd like to recover the ID used for the last record I inserted. For the moment, I do a select max(Id) just after the insert but there is, my be a best way to do it. Stop. Read this:

RE: [PHP] SQLInsert and recover the ID

2002-10-31 Thread John Meyer
use mysql_insert_id(). Much more reliable when and if you use the system with more than one person inserting at the same time. -Original Message- From: Christian Ista [mailto:mailing-list;istasofts.com] Sent: Thursday, October 31, 2002 2:12 PM To: [EMAIL PROTECTED] Subject: [PHP]

RE: [PHP] SQLInsert and recover the ID

2002-10-31 Thread Christian Ista
use mysql_insert_id(). Much more reliable when and if you use the system with more than one person inserting at the same time. Sure it's for that I ask Thanks for your help. Christian, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] rename()

2002-10-31 Thread Edward Peloke
I am trying to allow the user to upload pictures. What is the best way to rename them? If I use the rename function, I have to upload the pictures to the same place as the script and then move it. ALso, if I am not sure of the extension, how can I simply rename it? Can I do multiple files at

[PHP] How printing the name and value of a variable ?

2002-10-31 Thread franck raynal
Hello, I'd like to print the name of a variable, in order to get something like this : THE VARIABLE tigidizougou EQUALS 12 ! from the original code below : $tigidizougou = 12; echo THE VARIABLE .(please help me right here). EQUALS .$tigidizougou; Any idea ? Thanks you.

[PHP] PHP - Internal linking in a page

2002-10-31 Thread Paul Ottar Tornes
Hi! I started to learn PHP yesterday, and I have just entered a little problem. In my index.php file. I have this line: ? if ($page== '') { $page=main.php ; } else { $page=$page.; } include ($page); ? wich controles the main page locaton, just like frames. It makes the files appear in the

[PHP] problem with postgres integration

2002-10-31 Thread suman
Hi all i'm having a strange problem while compiling php 4.2.3 i compiled php with these options Configure Command './configure' '--with-mysql=/usr/local/mysql/' '--with-apxs=/usr/local/apache/bin/apxs' '--with-openssl=/usr/local/ssl/' '--with-pear' '--with-gd' '--with-pqsql=/usr/local/pgsql/'

Re: [PHP] PHP - Internal linking in a page

2002-10-31 Thread PHP List
Your get statement is wrong: http://maloyportalen.no/~critical/maloy/index.php?page=main2.php?id=7 use http://maloyportalen.no/~critical/maloy/index.php?page=main2.phpid=7 You only get 1 question mark, any after will be treated as part of the variable page. Hi! I started to learn PHP

[PHP] explode didn't work well

2002-10-31 Thread ppf
Hi all: I had tried to split the string into an array of string using explode but the result isn't displaying anything I tried the example from document its its not showing anything, pls point out where i went wrong ** $pizaa=piece1 piece2 piece3 piece4 piece5 piece6; $pieces

Re: [PHP] explode didn't work well

2002-10-31 Thread Rasmus Lerdorf
Because you can't spell pizza, I bet. On Thu, 31 Oct 2002, ppf wrote: Hi all: I had tried to split the string into an array of string using explode but the result isn't displaying anything I tried the example from document its its not showing anything, pls point out where i went wrong

Re: [PHP] help needed with phpmailer

2002-10-31 Thread Jonathan Sharp
SEE: http://phpmailer.sourceforge.net/extending.html (click Home Page then examples) -js Pushpinder Singh Garcha wrote: Hi All I am new in the php development world. I have made a simple mail application using the phph mail() function. I needed to use an attachment facility ith the

Re: [PHP] explode didn't work well

2002-10-31 Thread Keith Vance
echo ($pieces[2]); instead of echo ($pieces [2]); Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try U.M.A. at http://uma.sourceforge.net/ On Thu, 31 Oct 2002, ppf wrote: Hi all: I had tried to split the string into an array of string using explode but the

Re: [PHP] explode didn't work well

2002-10-31 Thread Keith Vance
And that too. Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try U.M.A. at http://uma.sourceforge.net/ On Thu, 31 Oct 2002, Rasmus Lerdorf wrote: Because you can't spell pizza, I bet. On Thu, 31 Oct 2002, ppf wrote: Hi all: I had tried to split the string

[PHP] str_replace

2002-10-31 Thread rick
How could this be written better? Is there a way to do it all in 1 line? $file = str_replace( , , $file); $file = str_replace(', , $file); $file = str_replace(\\, , $file); $file = str_replace(/, , $file); $file = str_replace(:, , $file); $file = str_replace(+, , $file); $file = str_replace(, ,

RE: [PHP] str_replace

2002-10-31 Thread Thoenen, Peter Mr. EPS
try $file = preg_replace(/[[:punct:][:space:]]/,'',$file); PEter -Original Message- From: rick [mailto:rick;somers.net] Sent: Friday, November 01, 2002 00:22 To: [EMAIL PROTECTED] Subject: [PHP] str_replace How could this be written better? Is there a way to do it all in 1

Re: [PHP] Form Question

2002-10-31 Thread John Nichel
Try this SCRIPT LANGUAGE=JavaScript !-- function ClearLevelListForm() { for (var i=0;idocument.LevelListForm.elements['rgItems[]'].length;i++) { if (document.LevelListForm.elements['rgItems[]'][i].checked == true) { alert(document.LevelListForm.elements['rgItems[]'][i].value);

Re: [PHP] str_replace

2002-10-31 Thread Jonathan Sharp
$del = array(' ', ', '\\', '/'...etc); foreach ( $del AS $d ) { $file = str_replace($d, '', $file); } -js rick wrote: How could this be written better? Is there a way to do it all in 1 line? $file = str_replace( , , $file); $file = str_replace(', , $file); $file = str_replace(\\, ,

Re: [PHP] How printing the name and value of a variable ?

2002-10-31 Thread rija
Theoriquement it is not possible, because you cannot use any variable since you don't know its name- But you can cope something with get_defined_vars() in which you set every variable without distinction into an array- and after you select the variable you need using some criterias. like this

Re: [PHP] Form Question

2002-10-31 Thread PHP List
Thanks, but same problem. alert() will give me the correct values, but it is still not unchecking the boxes. Strange, it obviously sees them as the statement if (document.LevelListForm.elements['rgItems[]'][i].checked == true) is correctly found for every checked box, but it just can't seem to

Re: [PHP] How printing the name and value of a variable ?

2002-10-31 Thread PHP List
Why? echo THE VARIABLE .(please help me right here). EQUALS .$tigidizougou; Obviously the variables name is tigidizougou, so just do this: echo THE VARIABLE tigidizougou EQUALS .$tigidizougou; Or am I missing something here? Theoriquement it is not possible, because you cannot use any

Re: [PHP] rename()

2002-10-31 Thread rija
$_FILES['userfile']['name'] $_FILES['userfile']['type'] $_FILES['userfile']['size'] $_FILES['userfile']['tmp_name'] First once you upload file from browser using form ...input type=file name=userfile, the filename is automatically renamed by another one and put down to the upload_tmp_dir and

Re: [PHP] str_replace

2002-10-31 Thread Rasmus Lerdorf
Folks, read the docs please. You can simply pass an array directly to str_replace() and do this in a single str_replace() call. -Rasmus On Thu, 31 Oct 2002, Jonathan Sharp wrote: $del = array(' ', ', '\\', '/'...etc); foreach ( $del AS $d ) { $file = str_replace($d, '', $file); } -js

[PHP] storing inc.php outside doc root/security/includes

2002-10-31 Thread rolf vreijdenberger
this is how it is done: include ($_SERVER['DOCUMENT_ROOT'].'/../sensitivedata.inc.php'); explanation: suppose i have a file: www.mydomain.com/file.php on the server it could be : /home/sites/site168/web/file.php this file wants to include a file with sensitive data, (or just download some other

[PHP] Invitation

2002-10-31 Thread Stephen
Hello, I know this is completely off topic but why not take a break from all your PHP work for a minute? Could some of you please come to a chat I have running as a halloween party. Very few people are showing up. It's here: http://www.melchior.us/chat Thanks! Thanks, Stephen Craton

[PHP] Hashing in PHP

2002-10-31 Thread Greg
Hi, is there an easy way to get the lanman and md4 hash of a string in PHP? I know there's a md5() function, but can't find anything else. Thanks!! -Greg -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Rearranging Order of Photos

2002-10-31 Thread Monty
Hi, I need to write a script that re-organizes the order of photos that appear in an online photo gallery. I'm not sure if I can do this completely with PHP or if I need to incorporate Javascript as well, but, I was hoping someone here might have or know of a site that has some sample scripts that

[PHP] Re: counting clicks on a flash ad

2002-10-31 Thread James Redfern
On Tue, 29 Oct 2002 09:35:27 -0500 (EST), [EMAIL PROTECTED] (Joel Boonstra) wrote in [EMAIL PROTECTED]: ¦ You might try using software like phpAdsNew: ¦ ¦ http://www.phpadsnew.com/ ¦ ¦ It has a fantastic admin interface for you and for the advertiser, it ¦ supports Flash banners, as well as

Re: [PHP] Re: counting clicks on a flash ad

2002-10-31 Thread Justin French
Hi Looks to me like you've named your directory: /phpadsnew/ And looks to me like it's look for: /phpAdsNew/ Perhaps try that simple change and see what happens? Justin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML to MS Word

2002-10-31 Thread Charles Wiltgen
Manuel Lemos wrote... I'd say RTF is a format you're going to be able to come to grips with quicker than .doc -- just take a look at the source of a word doc -- it's pretty obscure!!! And proprietary, and soon to be obsolete. But Office 11 files will be XML files. RTF is not a closed

RE: [PHP] Rearranging Order of Photos

2002-10-31 Thread @ Darwin
Monty, maybe you can try using a database and PHP together to organize these photos. A suggestion would be to store only the path to the photos in a MySQL database, for example, and store the actual photos in the file system. If you would like to have these photos in a specific order then just

RE: [PHP] PHP - Internal linking in a page

2002-10-31 Thread John W. Holmes
You need to come up with a completely different method of doing this. Your site, if using this method, is horribly unsecure. How are you checking $page to make sure it's something that should be included?? ---John Holmes... -Original Message- From: Paul Ottar Tornes

RE: [PHP] rename()

2002-10-31 Thread John W. Holmes
I am trying to allow the user to upload pictures. What is the best way to rename them? If I use the rename function, I have to upload the pictures to the same place as the script and then move it. ALso, if I am not sure of the extension, how can I simply rename it? Can I do multiple files

RE: [PHP] number_format question

2002-10-31 Thread ed
Tried it. It works but crops everything after the first , in the number if you enter a number with commas. Works great if you don't enter any commas. What I need to be able to do: IN OUT 123456789 123,456,789 123456789.00 123,456,789 123,456,789.00 123,456,789 Ed

RE: [PHP] Who can tell me where I can get the cracked Zend Encoder3.0 ?

2002-10-31 Thread Daevid Vincent
I have it. You can download it from my website here: http://www.siia.net/piracy/ idiot. -Original Message- From: jianking [mailto:liaus;10mail.net] Sent: Thursday, October 31, 2002 7:00 AM Who can tell me where I can get the cracked Zend Encoder 3.0 ? -- PHP General Mailing

RE: [PHP] number_format question

2002-10-31 Thread Martin Towell
what about str_replace(,, , $str) before you pass the value to number_format()? -Original Message- From: [EMAIL PROTECTED] [mailto:ed;home.homes2see.com] Sent: Friday, November 01, 2002 9:37 AM To: Jay Blanchard Cc: [EMAIL PROTECTED] Subject: RE: [PHP] number_format question Tried it.

[PHP] Re: Help with using phpmailer

2002-10-31 Thread Manuel Lemos
Hello, On 10/31/2002 05:58 PM, Pushpinder Singh Garcha wrote: I am new in the php development world. I have made a simple mail application using the phph mail() function. I needed to use an attachment facility ith the mailing program...so I have tried to use this solution called phpmailer()

[PHP] Re: Good form class?

2002-10-31 Thread Manuel Lemos
Hello, On 10/31/2002 06:28 PM, Leif K-Brooks wrote: I'm looking for a good class to manage forms. It doesn't need to do anything with the form itself, I'm looking for something that does form validation on the processing side. I've looked on phpclasses, but everything I found was either

[PHP] Re: How to prevent failure email from being sent?

2002-10-31 Thread Manuel Lemos
Hello, On 10/27/2002 02:24 PM, Noah Spitzer-Williams wrote: Hey guys, My service sends out emails every few days to members who wish to have stats sent to them. The problem is once an email becomes inactive, I the webmaster gets a failure email sent to me. This is starting to add up and I

RE: [PHP] number_format question

2002-10-31 Thread John W. Holmes
Tried it. It works but crops everything after the first , in the number if you enter a number with commas. Works great if you don't enter any commas. How many integers can you name that have commas in them??? In other words, you have a string, so PHP converts it to an integer to pass to

[PHP] why does eregi match for whitespace when there is none?

2002-10-31 Thread Peter J. Schoenster
Here is the example: ?php $string = 'asfddsaz'; if (eregi('\s', $string)) { echo Whitespace present; }else { echo NO Whitespace present; } ? Why does the above return true? There is no whitespace in the string. What am I missing? Peter -- PHP General Mailing List

Re: [PHP] why does eregi match for whitespace when there is none?

2002-10-31 Thread rija
I don't think that eregi or ereg consider \s as whitespace- Instead, use or \040- - Original Message - From: Peter J. Schoenster [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 01, 2002 4:44 PM Subject: [PHP] why does eregi match for whitespace when there is none?

[PHP] Displaying Data of a MySQL Table in PHP

2002-10-31 Thread Ben C.
I want to create a table in PHP with data from a MySQL database table. Can someone please help with a sample script. I know this is probably easy but I need quick help. I searched the archives and couldn't find something this simple. Please help.

Re: [PHP] Displaying Data of a MySQL Table in PHP

2002-10-31 Thread John Nichel
http://www.php.net/manual/en/ref.mysql.php It doesn't get any simpler than that. Ben C. wrote: I want to create a table in PHP with data from a MySQL database table. Can someone please help with a sample script. I know this is probably easy but I need quick help. I searched the archives and

[PHP] PHP-GTK 0.5.2 released

2002-10-31 Thread Andrei Zmievski
To all crazy users of PHP-GTK, Version 0.5.2 has been released (after a half a year hiatus). This release has some bug fixes and also some minor feature enhancements, mostly in the graphics area. Download the releaes from; http://gtk.php.net/download.php Version 0.5.2 Bass does a body

Re: [PHP] Displaying Data of a MySQL Table in PHP

2002-10-31 Thread Jason Wong
On Friday 01 November 2002 14:14, Ben C. wrote: I want to create a table in PHP with data from a MySQL database table. Can someone please help with a sample script. I know this is probably easy but I need quick help. I searched the archives and couldn't find something this simple. google -

[PHP] php development environment

2002-10-31 Thread Simon Taylor
Hi All, Does anyone know if there is a good php development environment around, you know something that will hold a list of functions/classes so you don't have to scroll through thousands of line of code looking for a few lines of spurious code...and all the other goodies that come with that sort

[PHP] client-side zip of POST or GET data, auto unzip on server.

2002-10-31 Thread Petre Agenbag
Hi I'm wondering if something like this will be possible. I am correct in thinking that POST and GET data are sent as plain text? And, that being plain text, they should probably be highly compactable by zip utils? The reason I'm thinking this route is that I have a couple of forms for some

[PHP] Anything wrong with this function?

2002-10-31 Thread Steve Jackson
Can anyone see why I am having problems with this page. I'm trying to connect to the DB and display results using the function get_order_id_receipt. The DB connection works because I can produce the cart based on the users session so I don't get why this doesn't work ? include

Re: [PHP] Anything wrong with this function?

2002-10-31 Thread John Nichel
You're not executing the query, or selecting a db. But that's just the tip of the iceberg. If you have more than one orderid and more than one shipping your queries will return all of them. I'm not sure if this is what you want, but if it is, you really should be using something like

Re: [PHP] Anything wrong with this function?

2002-10-31 Thread John Nichel
You still need to execute the query to get a result set. $query = select orderid from receipts; $shippingquery = select shipping from receipts; $orderid = mysql_result($query); $shipping = mysql_result($shippingquery); $query and $shippingquery are not result sets. $this_var = mysql_query (

[PHP] At last an error message!

2002-10-31 Thread Steve Jackson
function get_order_id_receipt($orderid, $shipping) { //Get order ID from DB to pass to receipt. $conn = db_connect(); $datequery = select date from receipts where customerid = '10'; $query = select orderid from receipts where customerid = '10'; $shippingquery = select shipping from

Re: [PHP] Re: counting clicks on a flash ad

2002-10-31 Thread James Redfern
On Fri, 01 Nov 2002 12:45:45 +1000, [EMAIL PROTECTED] (Justin French) wrote in [EMAIL PROTECTED]: ¦ Looks to me like you've named your directory: ¦ /phpadsnew/ ¦ ¦ And looks to me like it's look for: ¦ /phpAdsNew/ ¦ ¦ Perhaps try that simple change and see what happens? Oh god, I wish that

[PHP] New Server advice

2002-10-31 Thread David Russell
Hi all, I am setting up a new production server. Assuming that I do not need register globals, what does everyone suggest for setting it up: Linux machine Apache PHP 4.2.3 My real question is whether I should install with Apache 1.3.27 or Apache 2.0.43 This implies 3 questions: 1. Does PHP

[PHP] Require_once problem

2002-10-31 Thread Kerry Kobashi
Whats the difference between require_once and include_once? I been running into a problem, perhaps someone can help. I require_once in a Pear database extension. Inside that pear database extension is a require_once(pear.php) and a require_once(db.php) This file, Thomas Voxs' DbPage.php file,

Re: [PHP] New Server advice

2002-10-31 Thread John Nichel
Production Server - Apache 1.3.x Apache2 is not even to be considered. Apache2 and PHP are not bedfellows yet. David Russell wrote: Hi all, I am setting up a new production server. Assuming that I do not need register globals, what does everyone suggest for setting it up: Linux machine

<    1   2