[PHP] Return mysql_fetch_array($result) from a function

2003-11-04 Thread Terence
Hi All, I am trying to get the results of a function, which queries MySQL, back into an array for me to order. I only want to print out certain fields (I call the same query, but use different fields in different places). This works is I print out the fields in the function itself: while($row =

Re: [PHP] [Stats] PHP Net List: October 2003

2003-11-04 Thread John Nichel
Bill Doerrfeld wrote: Top 20 Contributors by Number of Posts -- Marek Kilimajer181 Curt Zirzow164 Chris Shiflett

Re: [PHP] Mail Delivery Acknowledgement

2003-11-04 Thread John Nichel
[EMAIL PROTECTED] wrote: Thank you for contacting me Your e-mail has been forwarded to the appropriate person Mr. Imran Asghar. We welcome all comments and suggestions. Due to the high volume of e-mails received, not all e-mails are responded to directly. All e-mails that are respon

Re: [PHP] Shared SessionIDs?

2003-11-04 Thread John W. Holmes
Chris W. Parker wrote: Guillaume Dupuis We currently have 3 php servers. Can we use the same SessionID to connect across the 3 systems? If not, what would you suggest to minimize the number of login prompts, while keeping secure? Here's an idea (whether or not it's a g

Re: [PHP] text input truncated

2003-11-04 Thread Chris Shiflett
--- Daniel Clark <[EMAIL PROTECTED]> wrote: > > $xyz = "Hello World"; > > echo ""; > > > > The text box shows up with "Hello" NOT "Hello World". How do I get > > the entire variable? > > I would try single quotes here. > > $xyz = 'Hello World'; That's good advice in general, but this error is th

Re: [PHP] text input truncated

2003-11-04 Thread Nathan Taylor
Your html is very sloppy actually. Use: $xyz = 'Hello World'; echo ''; - Original Message - From: Daniel Clark To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 6:49 PM Subject: Re: [PHP] text input truncated > $xyz = "Hello World"; > >

Re: [PHP] text input truncated

2003-11-04 Thread Daniel Clark
> $xyz = "Hello World"; > > echo ""; > > ?> > > The text box shows up with "Hello" NOT "Hello World". How do I get the > entire variable? I would try single quotes here. $xyz = 'Hello World'; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Instant timeout

2003-11-04 Thread Chris Shiflett
--- MIKE YRABEDRA <[EMAIL PROTECTED]> wrote: > What would cause a php page to instantly prompt a timeout error when > loading? I bet this would cause that to happen pretty quickly: set_time_limit(1); Chris = My Blog http://shiflett.org/ HTTP Developer's Handbook http://httphandboo

RE: [PHP] Shared SessionIDs?

2003-11-04 Thread Chris Shiflett
--- "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > Store the username+password as an MD5 hash in a cookie, also store the > user id. Then on the other servers you can read the user id and use that > to pull out the username and password hash (you do hash your passwords > within the database right?)

Re: [PHP] Shared SessionIDs?

2003-11-04 Thread Chris Shiflett
--- Guillaume Dupuis <[EMAIL PROTECTED]> wrote: > We currently have 3 php servers. Can we use the same SessionID to > connect across the 3 systems? Yes, assuming I understand you correctly. There are many ways to address this challenge, but one method is to use a database for your session store.

[PHP] Instant timeout

2003-11-04 Thread MIKE YRABEDRA
What would cause a php page to instantly prompt a timeout error when loading? ++ Mike Yrabedra (President) 323 Incorporated Home of MacDock.com, MacAgent.com and MacShirt.com ++ W: http://www.323inc.com/ P

RE: [PHP] text input truncated

2003-11-04 Thread Pablo Gosse
On Tuesday, November 04, 2003 3:28 PM Jay wrote: > echo ""; [snip] > The text box shows up with "Hello" NOT "Hello World". How do I get the > entire variable? Hi Jay. You need to wrap the value attribute in quotes, or else it'll truncate at the first space. echo ""; Oh, and you'd also misspel

RE: [PHP] text input truncated

2003-11-04 Thread Martin Towell
Put quotes around all the values, like: echo ""; Martin -Original Message- From: Jay Frumkin [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 10:28 AM To: '[EMAIL PROTECTED]' Subject: [PHP] text input truncated Hi all, I am having a bit of a problem, and was wondering if you

Re: [PHP] text input truncated

2003-11-04 Thread Chris Garaffa
On Nov 4, 2003, at 6:27 PM, Jay Frumkin wrote: Hi all, I am having a bit of a problem, and was wondering if you could help? Here's the sample code (very simple) $xyz = "Hello World"; echo ""; ?> The text box shows up with "Hello" NOT "Hello World". How do I get the entire variable? If you

[PHP] text input truncated

2003-11-04 Thread Jay Frumkin
Hi all, I am having a bit of a problem, and was wondering if you could help? Here's the sample code (very simple) "; ?> The text box shows up with "Hello" NOT "Hello World". How do I get the entire variable? Thanks for your help, Jay

Re: [PHP] drop menu last entry

2003-11-04 Thread Marek Kilimajer
Store the information in a cookie, then when you build the select options set selected that option where value is equal to the cookie. [EMAIL PROTECTED] wrote: Hello I have a drop down menu in wich users can select a state, I would like to take the information of the state and computer id, and u

Re: [PHP] phpmyadmin foulup

2003-11-04 Thread Marek Kilimajer
Did you set the password for root user in mysql? Then you need to enter the password in [phpmyadmin directory]/config.inc.php. Find line: $cfg['Servers'][$i]['password'] = ''; and enter the password here ---^ Leevy, Joffrey L wrote: Hi all: I was trying to use phpmyadmin for th

Re: [PHP] Re: Handling checkboxes that aren't checked!!!

2003-11-04 Thread Daniel Clark
>> I have a page with a Form and a Checkbox. >> >> I have a second page which wants to do something depending on if the >> checkbox is selected or not. >> If its selected there is no problem. But if I tryand do anything if >> it isn't selected then it says the variable is 'undefined'. How can I >

Re: [PHP] Shared SessionIDs?

2003-11-04 Thread Marek Kilimajer
Guillaume Dupuis wrote: Hi, I am new to PHP, so I hope I phrase this okay :) We currently have 3 php servers. Can we use the same SessionID to connect across the 3 systems? If not, what would you suggest to minimize the number of login prompts, while keeping secure? Thanks in advance, Guillaume D

RE: [PHP] drop menu last entry

2003-11-04 Thread Martin Towell
Hi Juan, I think some sort of look up file or database table based on the computer's IP address would probably be the easiest method. Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, 5 November 2003 9:49 AM To: [EMAIL PROTECTED] Subject: [PHP]

RE: [PHP] Shared SessionIDs?

2003-11-04 Thread Chris W. Parker
Guillaume Dupuis on Tuesday, November 04, 2003 2:36 PM said: > We currently have 3 php servers. Can we use the same SessionID to > connect across the 3 systems? If not, what would you suggest to > minimize the number of login prompts, while keeping secure? Here's an

[PHP] drop menu last entry

2003-11-04 Thread juan3413
Hello I have a drop down menu in wich users can select a state, I would like to take the information of the state and computer id, and use it on the next user on the same computer, so when the next user logs in on that machine the state is preselected, if anybody knows where i can find that code,

[PHP] Shared SessionIDs?

2003-11-04 Thread Guillaume Dupuis
Hi, I am new to PHP, so I hope I phrase this okay :) We currently have 3 php servers. Can we use the same SessionID to connect across the 3 systems? If not, what would you suggest to minimize the number of login prompts, while keeping secure? Thanks in advance, Guillaume Dupuis -- PHP General

[PHP] Re: Handling checkboxes that aren't checked!!!

2003-11-04 Thread Rob Adams
All these posts as replies that are not linked to the originals (and sometimes show up timewise BEFORE the original!) throw me off. I'll try to not answer already answered questions anymore. -- Rob "Rob Adams" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > "Kb" <[EMAIL PROTE

[PHP] Re: Handling checkboxes that aren't checked!!!

2003-11-04 Thread Rob Adams
"Kb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I have a page with a Form and a Checkbox. > > I have a second page which wants to do something depending on if the > checkbox is selected or not. > If its selected there is no problem. But if I tryand do anything if it > i

[PHP] Re: phpmyadmin foulup

2003-11-04 Thread Rob Adams
"Joffrey L Leevy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all: > > I was trying to use phpmyadmin for the first time and messed up when trying > to give the [EMAIL PROTECTED] a password. I did that because phpmyadmin told > me something about lax security using "root" with

[PHP] phpmyadmin foulup

2003-11-04 Thread Leevy, Joffrey L
Hi all: I was trying to use phpmyadmin for the first time and messed up when trying to give the [EMAIL PROTECTED] a password. I did that because phpmyadmin told me something about lax security using "root" with no password. Anyhow something went wrong. Now I can't do anything with phpadmi

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Comex
<[EMAIL PROTECTED]> Comex: > ScriptAlias php "C:php" It copied wrong: ScriptAlias php "C:/php/" Sorry for the triple post. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Comex
<[EMAIL PROTECTED]> Marek Kilimajer: > Comex uses this configuration Oops. I didn't see this post. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Comex
<[EMAIL PROTECTED]> Eugene Lee: > On Tue, Nov 04, 2003 at 11:41:45AM +0200, Luke van Blerk wrote: >> >> I currently have Apache 2 (port 8080) setup with PHP 5 which can run >> simultaneously with the Apache 1.3.28 (port 80) and PHP4, but I'd >> like to find out if they can both run on the same Apac

RE: [PHP] Handling checkboxes that aren't checked!!!

2003-11-04 Thread Pablo Gosse
On Tuesday, November 04, 2003 12:45 PM Kevin wrote: [snipped] > How can I test for it without getting an error if it is not checked?? [/snipped] Hey Kevin. Use isset($var) to test if a var has been set. So you would need: If (isset($_POST['checkboxname']) && $_POST['checkboxname'] == 'on') {

[PHP] Handling checkboxes that aren't checked!!!

2003-11-04 Thread KB
Hi, I have a page with a Form and a Checkbox. I have a second page which wants to do something depending on if the checkbox is selected or not. If its selected there is no problem. But if I tryand do anything if it isn't selected then it says the variable is 'undefined'. How can I test for it w

[PHP] code archive..

2003-11-04 Thread Ferhat
Hi, I am looking for a "code archive script set" like www.miranda-im.org. I want to open a code archive sub-site on my website. Anyone knows a free code like that? Volvo www.VentusVigor.com WindCodes.VentusVigor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Apache1.3.28 vs PHP4.3.3

2003-11-04 Thread orlandopozo
hello, I tried to configure php as module SAPI of the apache web server, I put this line: LoadModule php4_module D:/PHP4.3.3/sapi/php4apache.dll AddModule mod_php4.c AddType application/x-httpd-php .php When I tested the configuration, I got this error: Cannot remove module mod_php4.c: not f

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Eugene Lee
On Tue, Nov 04, 2003 at 11:41:45AM +0200, Luke van Blerk wrote: : : I currently have Apache 2 (port 8080) setup with PHP 5 which can run : simultaneously with the Apache 1.3.28 (port 80) and PHP4, but I'd like to : find out if they can both run on the same Apache. I don't think its possible : to s

[PHP] Storage preference for language "translations"

2003-11-04 Thread Gerard Samuel
Currently, Im storing language "translations" if you will, in regular php files. I could have sworn there was a thread in the archives, about the pro/cons about storing such strings in php files, and the author recommended xml files because of UTF-8 reasons (that much I think I remember). If anyo

[PHP] Re: nested tree

2003-11-04 Thread Tommy Ipsen
Daniel Demacek wrote: Now I have written the following code to represent this nested tree using and in html, which I think is very ugly and probably not very efficient, I was wondering if there was a better solution, maybe more efficient: You might consider using the PEAR::Tree class (perhaps to

Re: [PHP] [Stats] PHP Net List: October 2003

2003-11-04 Thread Robert Cummings
I think Chris Shiftlett too steroids. He should be checked for blood doping too. I should have won the bronze, it's mine, it's MINE! I'll keeell you!!! (jj) Rob.k On Tue, 2003-11-04 at 13:28, Bill Doerrfeld wrote: > ---

Re: [PHP] Sweet PHP backup / dump function for MySQL database

2003-11-04 Thread CPT John W. Holmes
From: "René Fournier" <[EMAIL PROTECTED]> > Right now, I'm using phpMyAdmin to periodically backup/dump a client > MySQL database to a textfile (from which one can simply restore the > database if it ever got corrupted). I'm also working on a super-simple > CMS for the client to use themselves. I

RE: [PHP] [Stats] PHP Net List: October 2003

2003-11-04 Thread Chris W. Parker
Bill Doerrfeld on Tuesday, November 04, 2003 10:28 AM said: > Jay Blanchard 78 > Chris W. Parker 78 Tied for 7th place! w00t! Chris. -- Don't like reformattin

[PHP] [Stats] PHP Net List: October 2003

2003-11-04 Thread Bill Doerrfeld
-- Searchable archives for this list are available at --

Re: [PHP] Fatal error: Call to undefined function: xpath_new_context()

2003-11-04 Thread Ryan Thompson
Problems one of two things. A - you're version of PHP doesn't have support for that function yet (v4.1.0). or B - You didn't compile support for DOM http://ca.php.net/manual/en/ref.domxml.php On Tuesday 04 November 2003 12:51, Ian Williams wrote: > I am trying to do a little XPath, but I

RE: [PHP] Fatal error: Call to undefined function: xpath_new_context()

2003-11-04 Thread Jay Blanchard
[snip] I am trying to do a little XPath, but I get this error: Fatal error: Call to undefined function: xpath_new_context() in Can someone please help me find my problem? [/snip] Xpath is not being seen...have you installed it correctly? Are the paths defined correctly? -- PHP General Mailing L

[PHP] Re: hard(?) syntax problem

2003-11-04 Thread DvDmanDT
You could try $tmp=constant("PL_ORT"); $value=$tmp[$key]; But I doubt it'll work.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.mcafee.com/vir

RE: [PHP] fwrite, fopen, or fread limit?

2003-11-04 Thread Mike At Spy
Yes, that was it. Thanks! :) -Mike > -Original Message- > From: Roger Spears [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 04, 2003 12:45 PM > To: Mike At Spy > Subject: Re: [PHP] fwrite, fopen, or fread limit? > > > check the php.ini file, there may be a file upload limit plac

[PHP] Fatal error: Call to undefined function: xpath_new_context()

2003-11-04 Thread Ian Williams
I am trying to do a little XPath, but I get this error: Fatal error: Call to undefined function: xpath_new_context() in Can someone please help me find my problem? cheers ian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Moodle.Org

2003-11-04 Thread Becoming Digital
As one who has to use WebCT regularly, I can say with great conviction that a better project would get rid of that piece of crap altogether. Edward Dudlik "Those who say it cannot be done should not interrupt the person doing it." wishy washy | www.amazon.com/o/registry/EGDXEBBWTYUU - Ori

RE: [PHP] fwrite, fopen, or fread limit?

2003-11-04 Thread Jay Blanchard
[snip] Does anyone know if the commands for fwrite, fopen, or fread have memory limits in dealing with large files? I created a system for uploading files to a server. Small files work fine. Larger ones (around 7 megs) do not work at all. [/snip] Have you checked your upload_max_filesize in php.

[PHP] fwrite, fopen, or fread limit?

2003-11-04 Thread Mike At Spy
Does anyone know if the commands for fwrite, fopen, or fread have memory limits in dealing with large files? I created a system for uploading files to a server. Small files work fine. Larger ones (around 7 megs) do not work at all. Thanks, -Mike -- PHP General Mailing List (http://www.php.ne

[PHP] Sweet PHP backup / dump function for MySQL database

2003-11-04 Thread René Fournier
Right now, I'm using phpMyAdmin to periodically backup/dump a client MySQL database to a textfile (from which one can simply restore the database if it ever got corrupted). I'm also working on a super-simple CMS for the client to use themselves. I would like the client to also be able to easily

RE: [PHP] Retrieving my domain name

2003-11-04 Thread Pablo Gosse
On Tuesday, November 04, 2003 8:35 AM Shaun wrote: > I want to generate an email with a link in it that links back to the > domain name I am sending it from. How can I do this in PHP? $_SERVER['SERVER_NAME'] will return of the domain under which the script is called. Cheers, Pablo -- PHP Genera

[PHP] Retrieving my domain name

2003-11-04 Thread Shaun
Hi, I want to generate an email with a link in it that links back to the domain name I am sending it from. How can I do this in PHP? Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: hard(?) syntax problem

2003-11-04 Thread pete M
unfortunately Constants are scalar only, arrays not allowed below is from the manual --- Constants do not have a dollar sign ($) before them; Constants may only be defined using the define() function, not by simple assignment; Constants may be defined and

RE: [PHP] hard(?) syntax problem

2003-11-04 Thread Pablo Gosse
On Tuesday, November 04, 2003 8:12 AM Adam wrote: > I want to access a value of an array by key, but the array is not a > variable - it is a constant. > > How do I do it? > I tried > $value = PL_ORT[$key]; > , but this doesn't work (parse error)... > I even tried > $value = {PL_ORT[$key]}; Hi Ad

RE: [PHP] split ...

2003-11-04 Thread Dan Joseph
Hi, Thanks, that worked like a charm. I didn't realize that | was a special character, that's good to know. I also agree with the explode method. Seems quicker. Thanks! -Dan Joseph > The | character is a special character in regular expressions, > which split() > expects. So, you can

[PHP] hard(?) syntax problem

2003-11-04 Thread Adam i Agnieszka Gasiorowski FNORD
I want to access a value of an array by key, but the array is not a variable - it is a constant. How do I do it? I tried $value = PL_ORT[$key]; , but this doesn't work (parse error)... I even tried $value = {PL_ORT[$key]}; -- Sek

Re: [PHP] split ...

2003-11-04 Thread CPT John W. Holmes
From: "Dan Joseph" <[EMAIL PROTECTED]> > I'm getting the following error: > > [Tue Nov 4 10:01:53 2003] [error] PHP Warning: split() [ href='http://www.php.net/function.split'>function.split]: REG_EMPTY in > /usr/local/apache/htdocs-chm/import_data.php on line 26 > > Here is the code in question

Re: [PHP] Stripping Decimals

2003-11-04 Thread Ed Curtis
Thanks! Works like a charm. Ed On Tue, 4 Nov 2003, CPT John W. Holmes wrote: > From: "Ed Curtis" <[EMAIL PROTECTED]> > > I currently use number_format() and str_replace() to remove a "," or "$" > > if entered and reformat it as a price for an item. I've asked the > > user not to use decimal

Re: [PHP] Stripping Decimals

2003-11-04 Thread CPT John W. Holmes
From: "Ed Curtis" <[EMAIL PROTECTED]> > I currently use number_format() and str_replace() to remove a "," or "$" > if entered and reformat it as a price for an item. I've asked the > user not to use decimals but some still do. How do I remove a decimal and > anything after from a number in a vara

RE: [PHP] Stripping Decimals

2003-11-04 Thread Jay Blanchard
[snip] I currently use number_format() and str_replace() to remove a "," or "$" if entered and reformat it as a price for an item. I've asked the user not to use decimals but some still do. How do I remove a decimal and anything after from a number in a varable? [/snip] http://www.php.net/explod

[PHP] Stripping Decimals

2003-11-04 Thread Ed Curtis
I currently use number_format() and str_replace() to remove a "," or "$" if entered and reformat it as a price for an item. I've asked the user not to use decimals but some still do. How do I remove a decimal and anything after from a number in a varable? Thanks, Ed -- PHP General Mailing Li

[PHP] split ...

2003-11-04 Thread Dan Joseph
Hi All, I'm getting the following error: [Tue Nov 4 10:01:53 2003] [error] PHP Warning: split() [function.split]: REG_EMPTY in /usr/local/apache/htdocs-chm/import_data.php on line 26 Here is the code in question: $line = fgets( $file );

[PHP] Re: PHP script for mysql queries

2003-11-04 Thread pete M
web client http://www.phpmyadmin.net/home_page/ ;-) Joffrey L Leevy wrote: Hi: Going thru some teething problems. Does anyone have a simple PHP program that will enable mysql queries to be executed and displayed using internet explorer or another medium? thanks -- PHP General Mailing List (http

RE: [PHP] PHP script for mysql queries

2003-11-04 Thread Jay Blanchard
[snip] Going thru some teething problems. Does anyone have a simple PHP program that will enable mysql queries to be executed and displayed using internet explorer or another medium? [/snip] Please RTFM (manual), STFW (Google), STFA (archives) as there are several thousand examples/tutorials avail

[PHP] PHP script for mysql queries

2003-11-04 Thread Leevy, Joffrey L
Hi: Going thru some teething problems. Does anyone have a simple PHP program that will enable mysql queries to be executed and displayed using internet explorer or another medium? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Catalin Trifu
Luke Van Blerk wrote: Hi everyone I'd like to set up PHP5 to parse php files with a .php5 extension on Apache 1.3.28. Anybody know how to do this? Regards Luke Hi, You can set up virtual hosts on the apache server and load the php module on a per virual host base Cheers, Catalin -- PHP General

Re: [PHP] verify my ISP

2003-11-04 Thread Ryan A
Hey, Paying 15$ extra just for php is IMNSHO madness, PHP is widely supported and is being offered with plenty of hosting packages totally free...I have seen some packages/plans offering 35mb space, 1gig bandwidth etc for just 81cents a month WITH PHP Check out http://bestwebhosters.com do a

Re: [PHP] help with EVAL direct

2003-11-04 Thread CPT John W. Holmes
From: <[EMAIL PROTECTED]> > OS RedHat 9 and RedHat 7.2 > Apache 1.3.27 and Apache 2 > > I have problem with direct eval, in version PHP4.2.2 is all OK > in version PHP 4.3.3 -> direct eval bad > > here cut code > > $s = '$ret = ibase_execute($this->query, $arg_list[0], $arg_list[1], > $arg_list[2

[PHP] Re: How to get the server information

2003-11-04 Thread pete M
print_r($_SERVER); pete K. Praveen Kumar wrote: Dear All, How can I get the Server Information which operating system the server is running? Using PHP. please let me know -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to load external modules ?

2003-11-04 Thread Valentina
I need to use some libraries that I've registered on my system register. I've verified if the same libraries could be seen from vb e vb script. Everything is ok. Do you know some method for use this libraries into php. My php version is 4.3.1. I've used : $word = new com ("word.application"); but

Re: [PHP] Apache1.3.28 vs PHP4.3.3

2003-11-04 Thread Hidayet Dogan
Remove AddModule mod_php4.c directive/line in your httpd.conf file, and restart your Apache Web Server. Hidayet Dogan [EMAIL PROTECTED] Pleksus Bilisim Teknolojileri D.T.O. A.S.

php-general Digest 4 Nov 2003 12:14:03 -0000 Issue 2395

2003-11-04 Thread php-general-digest-help
php-general Digest 4 Nov 2003 12:14:03 - Issue 2395 Topics (messages 168427 through 168462): Re: mysql_field_type() ... 168427 by: John W. Holmes Showing high and low flash clips 168428 by: daniel.electroteque.org 168429 by: Boyan Nedkov Mail Delivery Acknowledgemen

Re: [PHP] How to get the server information

2003-11-04 Thread K. Praveen Kumar
Hi Imran, Thanks for the reply but $OS is not working. I need to get the on which operating system the server is running. Thanks & Regards Praveen On Tue, 2003-11-04 at 04:01, imran wrote: > Hi, > echo $OS; > echo ""; > echo $SERVER_SOFTWARE ; > ?> > bye > > - Original Message

Re: [PHP] the function of the "@" symbol?

2003-11-04 Thread Nitin
it basically means, shutup please. - Original Message - From: "Leevy, Joffrey L" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 04, 2003 1:12 PM Subject: [PHP] the function of the "@" symbol? > Hi all: > > I have been searching through several books to find out wh

Re: [PHP] How to get the server information

2003-11-04 Thread imran
Hi, "; echo $SERVER_SOFTWARE ; ?> bye - Original Message - From: "K. Praveen Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Praveen Kumar" <[EMAIL PROTECTED]> Sent: Tuesday, November 04, 2003 2:33 PM Subject: [PHP] How to get the server information > Dear All, > How can I

Re: [PHP] verify my ISP

2003-11-04 Thread PHP Webmaster
"John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > How can I verify if my ISP really does have PHP on a server I am using. They say if I want PHP, I must pay an extra $15 per month. Is there somehting I can put in my .htaccess to verify and maybe do this? > >

[PHP] Re: the function of the "@" symbol?

2003-11-04 Thread PHP Webmaster
"Joffrey L Leevy" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all: > > I have been searching through several books to find out what the "@" > character represents. > > An example used in code: > > if (@$first == "no"). > > Could anyone please explain the function of "@

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Marek Kilimajer
Comex uses this configuration to run php4 and php5 side by side. One version must be run as cgi so there are no symbol conflicts. LoadModule php5_module "C:/php5/sapi/php4apache2.dll" ScriptAlias /php/ "C:/php/" AddType application/x-httpd-php .php5 AddType application/x-httpd-php4 .php Action ap

[PHP] help with EVAL direct

2003-11-04 Thread j . sobotka
Hello, you are last help help my please OS RedHat 9 and RedHat 7.2 Apache 1.3.27 and Apache 2 I have problem with direct eval, in version PHP4.2.2 is all OK in version PHP 4.3.3 -> direct eval bad here cut code $s = '$ret = ibase_execute($this->query, $arg_list[0], $arg_list[1], $arg_list[2],

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Luke van Blerk
I currently have Apache 2 (port 8080) setup with PHP 5 which can run simultaneously with the Apache 1.3.28 (port 80) and PHP4, but I'd like to find out if they can both run on the same Apache. I don't think its possible to specify diferrent locations of your php.ini file though for each PHP (on Win

Re: [PHP] How to get the server information

2003-11-04 Thread Jason Wong
On Tuesday 04 November 2003 17:33, K. Praveen Kumar wrote: > How can I get the Server Information which operating system the > server is running? Using PHP. please let me know phpinfo() -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web

[PHP] How to get the server information

2003-11-04 Thread K. Praveen Kumar
Dear All, How can I get the Server Information which operating system the server is running? Using PHP. please let me know -- Thanks & Regards Praveen Kumar SoftPro Systems Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Eugene Lee
On Tue, Nov 04, 2003 at 10:30:39AM +0200, Luke van Blerk wrote: : : I'd like to set up PHP5 to parse php files with a .php5 extension on Apache : 1.3.28. Anybody know how to do this? I don't know about loading PHP4 and PHP5 modules in the same Apache server. It may be easier to build a separate

[PHP] Setting up PHP5 alongside PHP4 on apache

2003-11-04 Thread Luke van Blerk
Hi everyone I'd like to set up PHP5 to parse php files with a .php5 extension on Apache 1.3.28. Anybody know how to do this? Regards Luke -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] verify my ISP

2003-11-04 Thread Jason Wong
On Tuesday 04 November 2003 14:15, John Taylor-Johnston wrote: > :=) First thing I tried. > > Oh well. Either pay them the money they're asking or if you want to try it surreptitiously just follow the relevant instructions for your webserver as detailed in the manual. -- Jason Wong -> Gremlin

Re: [PHP] Style.css

2003-11-04 Thread - Edwin -
On Tue, 4 Nov 2003 12:09:05 +0530 "PHPLover" <[EMAIL PROTECTED]> wrote: > I am going throught the CVS of PHP and happened to see the > Style.css file. > I found that background-color of body,html is set to White > instead of > #ff which i feel is not a valid CSS. > Am i right ? Check it here:

Re: [PHP] the function of the "@" symbol?

2003-11-04 Thread - Edwin -
Hi, On Tue, 4 Nov 2003 02:42:33 -0500 "Leevy, Joffrey L" <[EMAIL PROTECTED]> wrote: > Hi all: > > I have been searching through several books to find out > what the "@" character represents. > > An example used in code: > > if (@$first == "no"). > > Could anyone please explain th

[PHP] the function of the "@" symbol?

2003-11-04 Thread Leevy, Joffrey L
Hi all: I have been searching through several books to find out what the "@" character represents. An example used in code: if (@$first == "no"). Could anyone please explain the function of "@" in the code? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] FLAG

2003-11-04 Thread irinchiang
I see, thanks for the short introduction of FLAG ... Anyway do u know of any useful links that has more info on "FLAG" ??? Regards, Irin. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FLAG

2003-11-04 Thread Eugene Lee
On Tue, Nov 04, 2003 at 03:19:20PM +0800, [EMAIL PROTECTED] wrote: : : Hi calling out to all programmers: : : I heard that there is a term used by most programmers called "FLAG" . : Anyone aware of that?? Its a kinda "Indicator" eg. I have a table with : "YES" column equal to "1" and "NO"

[PHP] FLAG

2003-11-04 Thread irinchiang
Hi calling out to all programmers: I heard that there is a term used by most programmers called "FLAG" . Anyone aware of that?? Its a kinda "Indicator" eg. I have a table with "YES" column equal to "1" and "NO" column equal to "0". Does anyone know of any useful links with regards to t