Re: [PHP] Found the problem with the libmcrypt.....

2002-10-10 Thread Scott Fletcher
Hello Tom! Oh yea, I tried the '--with-mcrypt=../mcrypt-2.6.3' option and the PHP's './configure' stopped accepting the mcrypt stuffs. After compiling and installing it. PHP got messed up and didn't work too well. It took me many times to find the workaround to it but they don't work. So, I h

[PHP] Re: Found the problem with the libmcrypt.....

2002-10-10 Thread Scott Fletcher
/local/lib/libmcrypt-2.5.3/modules/algorithms mcrypt.modes_dir = /usr/local/lib/libmcrypt-2.5.3/modules/modes --clip-- It work like a charm!! "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Found the problem with li

[PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
With odbc_exec() function, it is able to execute and retrieve the data pretty well. Unfortunately, when the number of fields grow and grow then the odbc_exec() return false and a blank data. I don't get it! When I run the SQL command through the database interface, it work like a charm. So, it

Re: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
clip $database = "ECBI_DB"; $user = "db2inst1"; $pass = "ibmdb2"; $cid = @odbc_connect($database,$user,$pass) or die("Unable to connect to Database !!!") ; $ask = "SELECT * FROM CUSTOMERS, USERS "; $ask .= "WHERE CUSTOMERS.CUSTOMER_ID = '".$_POST['Customer_Id']."

Re: [PHP] odbc_exec() act funny.....

2002-10-15 Thread Scott Fletcher
When I try to do the two seperate SQL command with the 2nd odbc execution right after the 1st odbc execution. It work fine. Weird!! --clip-- //SQL Command #1 $ask = "SELECT * FROM CUSTOMERS "; $ask .= "WHERE CUSTOMERS.CUSTOMER_ID = '".$_POST['Customer_Id']."'"; //SQL Command #2

[PHP] Browscap.ini

2002-10-28 Thread Scott Fletcher
Any anyone tell me about this? I know it is about browser detection software or something. What I want to know is is it good for general use? Can it be used on UNIX server for PHP to interface with? Does it require a lot of update or something? I saw on that website that describe about BrowseH

[PHP] Re: Just curious about Mod_SSL and Apache.

2002-10-29 Thread Scott Fletcher
Found a perfect solution to this problem. Check it out at this website, http://bsdvault.net/sections.php?op=viewarticle&artid=85. Enjoy!! "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message news:20021023135230.58238.qmail@;pb1.pair.com... > I know the topic is off th

[PHP] Getting Apache (SSL) to start without typing in passphrase

2002-10-29 Thread Scott Fletcher
Hey Fellas From the previous posting in the past when I posted a comment about ways to make Apache start up automatically without manually typing in the passphrase for SSL. Something that is a must have for the server reboot. Be of good cheers! I found the reference on the Apache/Mod_SSL

[PHP] Comments / Question about XML?

2002-06-11 Thread Scott Fletcher
Hi! I'm going to start programming for XML but I have never done it before. I also found out that I would need to recompile PHP with the "--xml" option. That's suck! Will have to do it while the server is on live site. Hopefully nothing will go wrong. (Cross my finger!). By the way, know o

Re: [PHP] Comments / Question about XML?

2002-06-11 Thread Scott Fletcher
Havent' thought about that. That's what so great about UNIX!!! Windows, too picky Scott "Analysis & Solutions" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey Scott: > > > I also found out that I would need to recompile PHP with the "--xml" option. >

[PHP] XML with PHP?

2002-06-12 Thread Scott Fletcher
Hey! Which PHP option should I use for compiling with the XML support. I'm using the standard XML support on the web and I found there are 4 or 5 different PHP option for XML. Which should I use? The example of the XML is .. -- clip -- http://www."; ...> 11

[PHP] Compiling PHP with XML????

2002-06-26 Thread Scott Fletcher
I looked in the "./configure --help" for the xml support. It didn't say but show some options such as disabling xml, using xml with different stuffs. Nothing is being mentioned about enabling xml or something. So, is xml in php supported automatically? Thanks, Scott -- PHP General Mailing

Re: [PHP] Compiling PHP with XML????

2002-06-26 Thread Scott Fletcher
t; wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > On Wednesday, June 26, 2002, at 11:57 AM, Scott Fletcher wrote: > > > I looked in the "./configure --help" for the xml support. It didn't > > say but > > show some options such as disabl

[PHP] PHP does not work??

2002-06-26 Thread Scott Fletcher
Hi! I downloaded the newer version of PHP and compiled it. The php is working great! But there is one problem. When I use the hyperlink, "test.php?data=yes" and I go to this page, test.php but there is no data in this variable, $data. So, the web page I have, most of them are all thrown off b

[PHP] Re: PHP does not work??

2002-06-26 Thread Scott Fletcher
If anyone know, can anyone tell me what it does? Thanks. Scott "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi! I downloaded the newer version of PHP and compiled it. The php is > working great! But

Re: [PHP] Re: PHP does not work??

2002-06-26 Thread Scott Fletcher
I didn't know that. Thanks for the info. I think it would be best that I not use php.ini. I can write the script to register the variable. What would be a demo script that would work? I'm having a little trouble understanding that on the php.net website. Most of the script that use global va

Re: [PHP] Re: PHP does not work??

2002-06-26 Thread Scott Fletcher
IL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > On Wednesday, June 26, 2002, at 02:13 PM, Scott Fletcher wrote: > > > I'm using UNIX, not windows, so there is no php.ini in UNIX. > > Sorry, don't take offense if I ask if you

Re: [PHP] Re: PHP does not work??

2002-06-26 Thread Scott Fletcher
derneath it, when clicked will go to a different webpage. Thanks, Scott "Erik Price" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > On Wednesday, June 26, 2002, at 02:56 PM, Scott Fletcher wrote: > > > I tried that a

Re: [PHP] Re: PHP does not work??

2002-06-28 Thread Scott Fletcher
spaces you only manage to > send the first word this can be overcome by using the > htmlspecialchars('value') method to evaluate value... > > turning on globals is to make the coding easier but has a > good deal of disadvantages... > > Spike... > "Scott Fl

Re: [PHP] Re: PHP does not work??

2002-06-28 Thread Scott Fletcher
Not a problem! I can make some adjustment to the $user_detail[''] (session_id()) to make it work as $_SESSION['']. Scott "Erik Price" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > On Wednesday, June 26,

[PHP] register_global, need some feedback

2002-07-01 Thread Scott Fletcher
Hi! With the register_global turned off. I'm working on making the login to work again. So, I have a few questions. 1) $GLOBALS, Where does this come from and where does this goes to? I noticed there is no variable declaration for this, so I just know that it is part of PHP codes, although I

[PHP] odbc_fetch_into, broken???

2002-07-01 Thread Scott Fletcher
Hi! I seem to have problem with the odbc_fetch_into function and it seem to be broken. It skipped some columns when retrieving data from the two tables. I didn't have that problem with the previous version of PHP. I'll include the sample of the function code for your convience. Does anyone

[PHP] odbc_fetch_into ??

2002-07-02 Thread Scott Fletcher
odbc_fetch_into didn't give me the result I expect it to. When returning the data, It skipped some columns. With the register_global turned off. How do I transform the defined data into an array to be use for odbc_fetch_into? I never got it to work right. I will appreciate any of the help here

[PHP] Re: odbc_fetch_into ??

2002-07-02 Thread Scott Fletcher
[$x].""; } --clip-- "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > odbc_fetch_into didn't give me the result I expect it to. When returning > the data, It skipped some columns. With the register_global turned of

[PHP] Re: DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread Scott Fletcher
Try $_SERVER['DOCUMENT_ROOT']. Global register is turned off by default in PHP version 4.2.x. See http://www.php.net/release_4_1_0.php for more detail. Global register had been turned off as part of more security since many people use the global register. So, $_SERVER, $_ENV, $_SESSION, etc. is

Re: [PHP] Re: odbc_fetch_into ??

2002-07-02 Thread Scott Fletcher
MAIL PROTECTED]">news:[EMAIL PROTECTED]... > Scott: > > On Tue, Jul 02, 2002 at 10:05:31AM -0400, Scott Fletcher wrote: > > I tried this script and it showed all of the data correctly, so how do I > > make the define variable to work correctly? > > > > > define(

Re: [PHP] Re: odbc_fetch_into ??

2002-07-02 Thread Scott Fletcher
That function, odbc_fetch_array() does not work. PHP spit out the error, undefined function. "Analysis & Solutions" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Scott: > > On Tue, Jul 02, 2002 at 10:05:31AM -0400, S

Re: [PHP] Re: odbc_fetch_into ??

2002-07-02 Thread Scott Fletcher
ws:[EMAIL PROTECTED]... > On Tue, Jul 02, 2002 at 11:59:59AM -0400, Scott Fletcher wrote: > > That function, odbc_fetch_array() does not work. PHP spit out the error, > > undefined function. > > Huh? Which version of PHP are you using? It's available in 4.0.2 or >

[PHP] $_SESSION

2002-07-02 Thread Scott Fletcher
Hi Again! I missed part of the past responses to the past posting over the last few days because I had it cleaned from MS-Outlook folder. So, feel free to provide some feedback on the transformation from the script with register global turned on to off. Need some feedback on hiding the $SID fro

[PHP] Re: upgrading php...

2002-07-02 Thread Scott Fletcher
You will need to upgrade Apache to 1.3.26 due to security hole. As we all know, Windows is very vulerable to virus like worms, so with the Apache's hole, it make it easier for hte virus to get in. So, better upgrade to 1.3.26 as soon as possible, this is where hte hole had been fixed. FletchSOD

[PHP] Re: Have you seen this host?

2002-07-02 Thread Scott Fletcher
This is a newsgroup for PHP discussion. This is not a PHP discussion, so it is a spam mail. Please refrain from using it. "Tony Harrison" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, if you can find a web host that offers ALL these services, i will eat

[PHP] Re: blank

2002-07-02 Thread Scott Fletcher
This is a PHP newsgroup, it is for PHP discussion. This is not a PHP discussion, so it is a spam mail. Please refrain from using it. "Matthew" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > subscribe [EMAIL PROTECTED] > > matthew de Jongh > president > the s

Re: [PHP] Re: blank (OT)

2002-07-03 Thread Scott Fletcher
No problem! Just saw the "www.the-spa.com" link so I thought it was an advertisement. It wasn't until after I submitted did I realize I was in error. FletchSOD "Chris Shiflett" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTE

Re: [PHP] $_POST into a formatted string, help!

2002-07-03 Thread Scott Fletcher
Hey, that is new to me! Thanks! FletchSOD "Kevin Stone" <[EMAIL PROTECTED]> wrote in message 01de01c22216$984c5740$6501a8c0@kevin">news:01de01c22216$984c5740$6501a8c0@kevin... > Oh man I hope you don't shoot yourself when you realize how easy this is.. > > foreach ($_POST as $key => $val) > { >

Re: Re[6]: [PHP] cURL in an exec() . more

2002-07-03 Thread Scott Fletcher
Awww Nut! I post a reply a while ago and probably accidenly delete it instead of sending it. Dang! I hate this MS-Outlook software! Anyway! I"m not going to start over, so I'll be brief! 1) Check the file path, like "/usr/local/bin/curl" instead of "curl" as an example. Sometime environment

Re: [PHP] V basic newbie problem

2002-07-03 Thread Scott Fletcher
Sorry to crash in! One quick question! Does the VB script work on NON-IE browsers? FletchSOD "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message 002601c222a0$8d8e7330$8102a8c0@niigziuo4ohhdt">news:002601c222a0$8d8e7330$8102a8c0@niigziuo4ohhdt... > Put it in a WHILE loop and RTFM > > -Origin

[PHP] $_SESSION (turned off, destory??)

2002-07-03 Thread Scott Fletcher
Say that the end-user closed the browser(s) without logging off. The $_SESSION can not be destroyed because the broswer(s) is closed. So, if hte end-user did log off and close the browser(s). How can I destroy the $_SESSION since the session_register() & session_destroy() can not be used with t

Re: [PHP] cURL in an exec() . more

2002-07-03 Thread Scott Fletcher
Ah! I know what you're feeling about Linux. I had that problem using PHP and text editing software (for programming) with Caldera, like ftp timeout, security, file path, etc. It become too much for me, so I junked it and went back to AIX. I haven't tried it on Red Hat but I can easily turned o

Re: Re[2]: [PHP] cURL in an exec() . more

2002-07-03 Thread Scott Fletcher
Bingo! That will work! This is what I do with the modem script. Since there's no PHP function or script for the modem, so I used the C programming that is already written by someone and just use PHP to execute the file. "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message 002901c222a3$8c2a6f00

[PHP] Need Help with $_SESSION.

2002-07-03 Thread Scott Fletcher
Have not been successful in making this work for 2 days now. I'm focusing on making the $_SESSION to work on each webpages. The 1st page is the login. The 2nd page represent the rest of the webpages on a secure side after logging in. I could use some help in making this work. The $_SESSION do

[PHP] Re: Re [PHP] cURL in an exec() . more. SOLVED

2002-07-03 Thread Scott Fletcher
Ha ha! Just what I mentioned from above. FULL PATH! :-) FletchSOD "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message 003201c222ac$9760ad90$8102a8c0@niigziuo4ohhdt">news:003201c222ac$9760ad90$8102a8c0@niigziuo4ohhdt... > It's always the smallest things that will get you, I should be slap

Re: [PHP] $_SESSION

2002-07-03 Thread Scott Fletcher
through the URL string. Not that there is > anything wrong or insecure by passing the session id through the URL string. > -Kevin > > - Original Message - > From: "Scott Fletcher" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, July 02

[PHP] Re: Re [PHP] cURL in an exec() . more. SOLVED

2002-07-03 Thread Scott Fletcher
:-) I went through the same thing the first time! Never again! I just pray and hope that I don't forget the next time! "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Ha ha! Just what I mentioned from above.

Re: [PHP] Need Help with $_SESSION.

2002-07-03 Thread Scott Fletcher
t; wrote in message 1025712692.3987.0.camel@workstation">news:1025712692.3987.0.camel@workstation... > You must do a session_start() before you can use the session ID or the > session array. > > On Wed, 2002-07-03 at 12:24, Scott Fletcher wrote: > > Have not been successful i

Re: [PHP] Need Help with $_SESSION.

2002-07-03 Thread Scott Fletcher
.3987.0.camel@workstation... > You must do a session_start() before you can use the session ID or the > session array. > > On Wed, 2002-07-03 at 12:24, Scott Fletcher wrote: > > Have not been successful in making this work for 2 days now. I'm focusing > > on making the

Re: [PHP] Need Help with $_SESSION.

2002-07-03 Thread Scott Fletcher
The demostration written by Kirk Johnson worked pretty well. So, it should work with my demo script I posted earlier today. Alright! I'm going to have to debug it to find the problem. I'll post the final script once everything is ironed out. Hope to get it done today. Thanks, FletchSOD "Ki

Re: [PHP] Need Help with $_SESSION.

2002-07-03 Thread Scott Fletcher
"; $array[1] = "One"; //This is either for an array or //substitute array for odbc_fetch_into for($x=0;$x<2;$x++) { $_SESSION[$x] = $array[$x]; } Page 2 echo $_SESSION[0]; echo $_SESSION[1]; "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PRO

[PHP] Re: IIS unexpected error

2002-07-05 Thread Scott Fletcher
It would be a good idea to switch to Apache. I had the php script and IIS. The problem with IIS is the virus, so MS provide some patches, include the IIS lockdown. When I activated the IIS Lockdown, it prevent some PHP code from working. It became too much for me so I had to switch to Apache.

Re: [PHP] $_COOKIE

2002-07-05 Thread Scott Fletcher
uot;>news:[EMAIL PROTECTED]... > Scott Fletcher wrote: > > I have a question! Since the $_COOKIE is on the server side, not on the > > client side. So, will the use of hte $_COOKIE be affected when the user's > > browser disabled the cookie? I do not know how the $_COOKIE

[PHP] function for size of array

2002-07-05 Thread Scott Fletcher
Is there PHP function that would get the total array count. ie --snip-- $array[0] = "zero"; $array[1] = "one"; $array[2] = "two"; $array_count = --snip-- And I would get 3 as an answer. Thanks, FletchSOD -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

Re: [PHP] function for size of array

2002-07-05 Thread Scott Fletcher
Ah! Thanks! By the way, it's "count()" with a "n". :-) "Terence Kearns" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > cout($array) > > Scott Fletcher wrote: > > >Is there PHP function that

[PHP] ./configure with register_globals turned on?

2002-07-05 Thread Scott Fletcher
What is the configure option that will turn on the register_globals? This is for ./configure option in UNIX / LINUX. Thanks, FletchSOD -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Using fsockopen

2002-07-05 Thread Scott Fletcher
Here's the simple script that will do the trick! This is what I use with Equifax before I start using cURL. You can substitute the "HOSTNAME", "HOSTPORT" for something else. --clip-- "; return 0; } $senddata = $headerstr; $senddata .= $sendstr; $senddatalen = strlen($senddata

[PHP] Re: PHP for AIX.5.1

2002-07-05 Thread Scott Fletcher
Go to PHP website, http://www.php.net and at the top, you'll see the download hyperlink. Click on that. Then use the tar.gz file under the title, "Complete Source Code". This is what I use with AIX. If you use the RPM to install other softwares, then you'll have to make sure the ./configure op

[PHP] Re: PHP for AIX.5.1

2002-07-05 Thread Scott Fletcher
d libraries which have to be compiled and installed as well... which > implies that you need the development stuff like gcc/gmake (I thought gmake > was used, from the top of my head) > > > "Scott Fletcher" <[EMAIL PROTECTED]> schreef in bericht > [EMAIL PROTECTED]">

Re: [PHP] function for size of array

2002-07-05 Thread Scott Fletcher
What is RTFM?? "Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Friday 05 July 2002 22:20, Scott Fletcher wrote: > > Ah! Thanks! By the way, it's "count()" with a "n". :-) > >

Re: [PHP] $_COOKIE

2002-07-05 Thread Scott Fletcher
> she will, but you should not count on it. > > ðÏËÁ > áÌØÂÅÒÔÏ > ëÉÅ× > > > > > > "Alberto Serra" <[EMAIL PROTECTED]> wrote in message > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > >>Scott Fletcher wrote: > >> > &

Re: [PHP] $_COOKIE

2002-07-05 Thread Scott Fletcher
use session_id() http://www.php.net/session_id Regards, Philip Olson On Fri, 5 Jul 2002, Scott Fletcher wrote: > Not a problem! I noticed the "PHPSESSID" only showed up on $_COOKIE and > nothing else. I dont' want to use the $_COOKIE, so I may either assign it > to $_SES

Re: [PHP] ./configure with register_globals turned on?

2002-07-05 Thread Scott Fletcher
;Larry Rosenman" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Fri, 2002-07-05 at 10:04, Scott Fletcher wrote: > > What is the configure option that will turn on the register_globals? This > > is for ./configure option in UNIX

Re: [PHP] ./configure with register_globals turned on?

2002-07-05 Thread Scott Fletcher
erstand. I'm going to stick to upgrading > > the website to go without register global. > > > > FletchSOD > > "Larry Rosenman" <[EMAIL PROTECTED]> wrote in message > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > > > On F

Re: [PHP] How Do Y'all Secure your Sites... (Cookies vs. IP Number)...

2002-07-05 Thread Scott Fletcher
Well! The credit bureau website I maintain. We don't use cookie because it doesn't help when the user had it turned off. We do compile OpenSSL and Libmcrypt with PHP, so we can check to see if the web browser is 128 bits and not below that. The PHP code for that is "$_SERVER['SSL_CIPHER_USEKEY

Re: [PHP] How Do Y'all Secure your Sites... (Cookies vs. IP Number)...

2002-07-05 Thread Scott Fletcher
to be used. "Miguel Cruz" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Fri, 5 Jul 2002, Scott Fletcher wrote: > > We also use the "$_SERVER['REMOTE_ADDR'] to allow only the credit bureau > >

[PHP] Final notice about $_SESSION.

2002-07-05 Thread Scott Fletcher
Ah! Go figure!! The PHP.net documentation failed to mentioned that the numeric value are not supported and never will be. Somebody better go and update that STUPID php.net documentation I have been looking around and never saw it. Also, look at bug #17122, this is where I got the mess

[PHP] $GLOBALS ???

2002-07-05 Thread Scott Fletcher
Let's say . --clip-- Page 1 - $data = "Yes!"; header("Location: test1.php"); Page 2 - $data = $GLOBALS['data']; echo $data; --clip-- This one does not work! Does this ever work at all or do I need to do the "header("Location: test1.php?data=Yes!");" into the script? -- PHP

Re: [PHP] HTTPS vs. HTTP ?

2002-07-05 Thread Scott Fletcher
You can do this in OpenSSL on Linux. But the web browser will give a warning message stating that the certificate is not issued by the certificate authority. For Miguel Cruz posting back there. If I understand correctly, the private key are inside the public key. Is this correct? "Ed Lazor" <

Re: [PHP] $GLOBALS ???

2002-07-05 Thread Scott Fletcher
Oh boy! Alright! URL it is "Ed Lazor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Correct you can add the data as a URL parameter. Or, you could set a > cookie and use sessions. > > -Original Message- > > Let's say . > > --clip-- > Pa

Re: [PHP] $GLOBALS ???

2002-07-05 Thread Scott Fletcher
What about PHPSESSID??? Can't use the $_COOKIE. Thanks, FletchSOD "Ed Lazor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Correct you can add the data as a URL parameter. Or, you could set a > cookie and use sessions. > > -Original Message- >

Re: [PHP] HTTPS vs. HTTP ?

2002-07-05 Thread Scott Fletcher
:-) Don't tell me if you're gonna use it for production!!! "Ed Lazor" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I can always click passed the warning instead of paying $119 for the cert > *grin* > > -Original Message- > You can do this in OpenSSL

Re: [PHP] Survey: MySQL vs PostgreSQL for PHP

2002-07-05 Thread Scott Fletcher
I dunno! Never tried it! I wonder which one is easier to work with? "B I G D O G" <[EMAIL PROTECTED]> wrote in message 00d201c22467$8c2e4830$[EMAIL PROTECTED]">news:00d201c22467$8c2e4830$[EMAIL PROTECTED]... > I am there with you on PostgreSQL. > > B i g D o g > > > > > - Original Message -

[PHP] Re: suppressing errors with "@"

2002-07-05 Thread Scott Fletcher
No, it's not a PHP bug. The "@" can not be used before a PHP variables, or PHP pre-defined variables like $GLOBALS, $_SESSION, $_GET, $HTTP_POST_VARS, etc. The "@" is used only before the PHP function as far as I know of. FletchSOD "Uri Even-Chen" <[EMAIL PROTECTED]> wrote in message [EMAIL PRO

Re: [PHP] Survey: MySQL vs PostgreSQL for PHP

2002-07-05 Thread Scott Fletcher
it out and see what you think... > > B i g D o g > > > - Original Message - > From: "Lazor, Ed" <[EMAIL PROTECTED]> > To: "'Scott Fletcher'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Friday, July 05, 2002 3:07

[PHP] $_REQUEST???

2002-07-08 Thread Scott Fletcher
Can the $_REQUEST be trusted?? The documentation said it is the combination of $_GET, $_POST, $_COOKIE & $_FILE. If the PHPSESSID is found in $_REQUEST, I can tell it is from $_COOKIE. I wonder if the PHPSESSID can be stored into $_REQUEST if hte $_COOKIE is unavailable or turned off? FletchSO

[PHP] Linux Newsgroup???

2002-07-08 Thread Scott Fletcher
Hey! Is there a Linux newsgroup? A place where people can send emails or posting about Linux, like tech support, programming, installation, feedback, advices, work around, etc. Just like hte same concept as the PHP newsgroup here. Thanks, FletchSOD -- PHP General Mailing List (http://www.

Re: [PHP] Linux Newsgroup???

2002-07-08 Thread Scott Fletcher
Wow! That's a lot!!! I guess, it can't be made into 1 newsgroup! :-) Thanks, FletchSOD "Miguel Cruz" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Mon, 8 Jul 2002, Scott Fletcher wrote: > > Is there a Linu

[PHP] Re: Please Remove this Moron

2002-07-10 Thread Scott Fletcher
Grin Actually, it is not too hard to unsubscribe if you're using MS-Outlook Express. "Ashley M. Kirchner" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Kevin Diffily wrote: > > > on 7/9/02 3:29 PM, Erik Hegreberg at [EMAIL PROTECTED] wrote: > > >

[PHP] fopen() ??

2002-07-10 Thread Scott Fletcher
Didn't I read the article somewhere on PHP.net that said that? Using fopen() to open a file, does it attempt to create a file if the file does not exist? I use the fopen() and I get the error message. What is the workaround to it? Thanks, FletchSOD -- PHP General Mailing List (http://www.

Re: [PHP] fopen() ??

2002-07-10 Thread Scott Fletcher
Thanks a million!!! "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message 002401c22824$2b1e87b0$8102a8c0@niigziuo4ohhdt">news:002401c22824$2b1e87b0$8102a8c0@niigziuo4ohhdt... > [snip] > Didn't I read the article somewhere on PHP.net that said that? Using > fopen() to open a file, does it attempt

[PHP] Re: (OT) Our Spam Friend

2002-07-10 Thread Scott Fletcher
Ha ha! Now, what did that spammer do? I don't have the copy of the posting of the last few days. I just flushed it into the garbage bin "Joshua E Minnie" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Serves our spam "friend" right... now we can get on with

Re: [PHP] fopen() ??

2002-07-10 Thread Scott Fletcher
That doesnt' work! Never mind! I'll manually create a blank file and put it there! "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Thanks a million!!! > > "Jay Blanchard" <[EMAIL PROTE

Re: [PHP] fopen() ??

2002-07-10 Thread Scott Fletcher
ul 2002 11:33:52 -0400, you wrote: > > > >"Scott Fletcher" <[EMAIL PROTECTED]> wrote in message > >[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > >> Thanks a million!!! > > >> > Didn't I read the article somewhere on PHP.net that sai

Re: [PHP] fopen() ??

2002-07-10 Thread Scott Fletcher
So, manually create a file took care of that. "David Otton" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Wed, 10 Jul 2002 11:33:52 -0400, you wrote: > > > >"Scott Fletcher" <[EMAIL PROTECTED]> wrote

Re: [PHP] (OT) No Punishment for Erik Hegreberg, Yet...

2002-07-11 Thread Scott Fletcher
Well, you better pray that he won't return!! "I'll Be Back!!" "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > No such logs are kept on our end. > > On Thu, 11 Jul 2002, Jason Soza wrote: > > > Well, my attempts at getting discipline for Erik

[PHP] Linux Newsgroup... ('continue');

2002-07-11 Thread Scott Fletcher
Are you sure these newsgroup work? I tried subscribing to it and got a response saying newsgroup server could not be found. I didn't have that problem with PHP Newsgroup or mozilla.org Newsgroup. --clip-- comp.os.linux.admin comp.os.linux.misc comp.os.linux.advocacy comp.os.linux.network co

Re: [PHP] Linux Newsgroup... ('continue');

2002-07-12 Thread Scott Fletcher
ED]">news:[EMAIL PROTECTED]... > On Thu, 11 Jul 2002, Scott Fletcher wrote: > > Are you sure these newsgroup work? I tried subscribing to it and got a > > response saying newsgroup server could not be found. I didn't have that > > problem with PHP Newsgroup or moz

Re: [PHP] Linux Newsgroup... ('continue');

2002-07-12 Thread Scott Fletcher
ch news service are you connecting to? > > -Original Message- > From: Scott Fletcher [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 11, 2002 2:15 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Linux Newsgroup... ('continue'); > > > Are you sure th

[PHP] odbc_exec(), any way to validate whether it work or not?

2002-07-12 Thread Scott Fletcher
For the odbc_exec(), is there a way to validate whether this return a true or false. If false, then the error message? I really hate PHP_SELF now, this one web page is written to be repeated 3 times. With the global register turned off, everything was really a mess and I'm close to being done i

Re: [PHP] Linux Newsgroup... ('continue');

2002-07-12 Thread Scott Fletcher
Alright! I'll give it my best shot! "Miguel Cruz" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Fri, 12 Jul 2002, Scott Fletcher wrote: > > Miguel Cruz <[EMAIL PROTECTED]> wrote in: > >> On Thu, 11 Jul

[PHP] Re: odbc_exec(), any way to validate whether it work or not?

2002-07-12 Thread Scott Fletcher
Never Mind! It was the $_GET['VIEW'] that was the problem. Since some script use Get method while other use Post method, so I changed it to $_REQUEST['VIEW'] and that took care of the problem. "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMA

[PHP] Purpose of $$var ?????

2002-07-16 Thread Scott Fletcher
The script was working great before PHP 4.2.x and not after that. So, I looked through the code and came upon this variable, "$$var". I have no idea what the purpose of the double "$" is for a variable. Anyone know? --clip-- $var = "v".$counter."_high_indiv";

Re: [PHP] Submit code

2002-07-16 Thread Scott Fletcher
As you know, PHP can't do the work becuase it is on the server side, not hte client side. Meaning, when the server side is finish, all done, then it go directly to the client side (web browser). If you want PHP to do something then you'll have to do something to the webpage, like a click button

Re: [PHP] Purpose of $$var ?????

2002-07-16 Thread Scott Fletcher
t; <[EMAIL PROTECTED]> wrote in message 002601c22cd0$b1995170$1601a8c0@nik">news:002601c22cd0$b1995170$1601a8c0@nik... > Variable variable. Read the docs. > > $v = 'foo'; > $foo = 'bar'; > echo $$v; > > Regards, > Andrey > > P.S. > So

Re: [PHP] Purpose of $$var ?????

2002-07-16 Thread Scott Fletcher
that register_globals defaults to off in > PHP 4.2.x and greater. > The solution? Start using the new superglobals ($_POST, $_GET, $_SESSION > etc) or (not recomended) set register_globals = on in php.ini > > Read more here: > http://www.php.net/manual/en/language.variables.predefi

Re: [PHP] Purpose of $$var ?????

2002-07-16 Thread Scott Fletcher
7;; > $foo = 'bar'; > echo $$v; > > Regards, > Andrey > > P.S. > Sometimes {} are used : ${$v} > > > > > "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message > news:<[EMAIL PROTECTED]>... > > The script was working gre

Re: [PHP] Purpose of $$var ?????

2002-07-16 Thread Scott Fletcher
Alright! Found the problem! Faulty script written that come before this script where $$var come into play. At least, it wasn't me, it was the other programmer's error. :-) "Scott Fletcher" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Good instruction for installing webserver using RPM and tar.gz files???

2002-07-16 Thread Scott Fletcher
I'm pretty used to installing OpenSSL, Mod_SSL, Mcrypt, cURL, PHP and Apache with all of them in tar.gz files. Now I'm experiementing it on the Linux and mySQL. Never tried it on both Linux and mySQL before. The tricky part I found is that some come in RPM. I am familar with installing using R

[PHP] function for finding one character in a string?

2002-07-17 Thread Scott Fletcher
I have been looking around in the PHP function listing for a function that can find or match one character from a string. I thought it would be something like post_str() or something but never found anything close to that. I get the idea of post and str from the SQL command. I did check the ere

[PHP] Re: Code errors

2002-07-18 Thread Scott Fletcher
Which line in the script you had provided to us is line 247? "Chris Crane" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am trying some code and it works except I get the following errors... > Warning: Undefined offset: 5 in > c:\www\htdocs\demos\havasuinte

Re: [PHP] Cookies - good or bad???

2002-07-18 Thread Scott Fletcher
I don't use cookies either due to the fact that some web browser block the cookies and some web browser's bug that affected the cookie. For example, if Internet Explorer have a bug with the cookie then it is gurantee that you'll never find MS to have this bug fix in a few days. It could take 6 m

[PHP] XML with PHP & cURL.

2002-07-18 Thread Scott Fletcher
Hi! I find it to be mind-boggling to try to make xml work with php and curl. What do anyone here think of it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML with PHP & cURL.

2002-07-18 Thread Scott Fletcher
ndsolutions.com/code/phpxml.htm and see what I can learn from. Thanks, FletchSOD "Analysis & Solutions" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thu, Jul 18, 2002 at 11:03:10AM -0400, Scott Fletcher wrote: > > Hi! I

<    1   2   3   4   5   6   7   8   >