Re: [PHP] Does not work

2002-07-15 Thread Alberto Serra
ðÒÉ×ÅÔ! Saci wrote: Who cares about privacy on my own company Intranet ? Anyone not willing to show where they has been surfing on the net to any unexperienced bycomer. Youu may read the history, but you just have *no* warranty that it will not be cleared at runtime. Since you have control

RE: [PHP] Does not work

2002-07-14 Thread Michael Geier
from PHP documentation: http://www.php.net/manual/en/reserved.variables.php 'HTTP_REFERER' The address of the page (if any) which referred the user agent to the current page. This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as

Re: [PHP] Does not work

2002-07-14 Thread Saci
// HTTP_REFERER as a feature. In short, it cannot really be trusted. Anybody know how to do that using JAva history with PHP together , or any other methode that works and can be trusted. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Does not work

2002-07-14 Thread Alberto Serra
ðÒÉ×ÅÔ! Saci wrote: // HTTP_REFERER as a feature. In short, it cannot really be trusted. Anybody know how to do that using JAva history with PHP together , or any other methode that works and can be trusted. Thank god no method can be trusted :) History even less the the referrer. Just

Re: [PHP] Does not work

2002-07-14 Thread Justin French
Pffft you can't trust Java, JavaScript or anything on the server side at all. Since it's set by the browser (client) itself, the best you can do is test for it, and provide a fall back option. For the bulk of users, this will be okay, because they're on IE. What you need to be carefull of is

Re: [PHP] Does not work

2002-07-14 Thread Saci
To say the minumum yor reply does not help in nothing. Who cares about privacy on my own company Intranet ? Alberto Serra [EMAIL PROTECTED] escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... ðÒÉ×ÅÔ! Saci wrote: // HTTP_REFERER as a feature. In short, it cannot really be

RE: [PHP] Does not work

2002-07-14 Thread Peter
-Original Message- From: Saci [mailto:[EMAIL PROTECTED]] Sent: Monday, 15 July 2002 12:51 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Does not work To say the minumum yor reply does not help in nothing. Who cares about privacy on my own company Intranet

Re: [PHP] Does not work

2002-07-14 Thread Saci
I agree, I made a mistake on my last reply , and I apologize for that. Thank you also for you for your coments, but my main question still open without any related reply. To say the minumum yor reply does not help in nothing. Who cares about privacy on my own company Intranet ? 1. I

Re: [PHP] Does not work

2002-07-14 Thread Justin French
This works for me, PHP 4.1.1 Upon first loading the page, I get nothing, but when I click on go, I get both referrer address' echoed. refer.php: --- html body A HREF=refer.phpgo/aBRBR Page refered by ?php echo $HTTP_REFERER.'br'; echo $_SERVER['HTTP_REFERER'].'br'; ? /body /html --- It's

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

2002-07-02 Thread Richard Lynch
I forgot to point out another disadvantage of turning on register_globals apart from that of security is that when you are sending a page with a form to the same page, e.g: form name=whatever action=$PHP_SELF method=post there is a tendency to lose info.. E.g. If you are sending text separated

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

2002-06-28 Thread Scott Fletcher
Not a problem, I can make some code modification. Sometime it is better to do it now and not have so much headache later on when more features are being added. Scott Kondwani Spike Mkandawire [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I forgot to point out

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, 2002, at 02:37 PM, Scott Fletcher wrote: I didn't know

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

2002-06-27 Thread Kondwani Spike Mkandawire
I forgot to point out another disadvantage of turning on register_globals apart from that of security is that when you are sending a page with a form to the same page, e.g: form name=whatever action=$PHP_SELF method=post there is a tendency to lose info.. E.g. If you are sending text separated

[PHP] Re: PHP does not work??

2002-06-26 Thread Scott Fletcher
I'm using UNIX, not windows, so there is no php.ini in UNIX. I only use the ./configure command which is -- snip -- ./configure --with-apache=../apache_1.3.26 --with-ibm-db2=/usr/lpp/db2_06_01 --with-openssl=../openssl-0.9.6d --with-mcrypt=../../lib --without-mysql

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

2002-06-26 Thread Jay Blanchard
[snip] I'm using UNIX, not windows, so there is no php.ini in UNIX. [/snip] Look here /etc/apache/php.ini-dist or /etc/apache/php.ini. There is an ini file for PHP, and you may have to rename php.ini-dist to php.ini. Once done, look for ; You should do your best to write your scripts so that

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

2002-06-26 Thread Erik Price
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've been living under a rock -- I only use Linux, and there is definitely a php.ini file that you use. I put mine in

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

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

2002-06-26 Thread Scott Fletcher
Hi Erik! This is my 2nd posting, not sure what happened to my first one. Sorry about not seeing your previous posting before. Windows crashed on me. My fault. I didn't know we can use php.ini in UNIX or Linux. Cool! Haven't been using it on UNIX for a long time. I think I can leave it out

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

2002-06-26 Thread Scott Hurring
There is no feasable way to hide data being submitted to your website. Anything that a user's browser can send, the user can telnet to port 80 of your server and spoof. You can try POSTing data, which will not appear in the URL, but dont even waste time trying to hide submitted data, rather,

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

2002-06-26 Thread Erik Price
On Wednesday, June 26, 2002, at 02:56 PM, Scott Fletcher wrote: I tried that and it worked. I have one question, what about the hyperlink? People will see the option in the hyperlink. You know. Is there a way around it to hid that in the hyperlink? If by hyperlink you mean the URL

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

2002-06-26 Thread Erik Price
On Wednesday, June 26, 2002, at 02:37 PM, Scott Fletcher wrote: I didn't know that. Thanks for the info. I think it would be best that I not use php.ini. On the contrary, I think it would be best if you read through it and read about it at http://www.php.net/manual/en/configuration.php

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

2002-06-26 Thread Scott Fletcher
Um, alright, I'll just leave the code in the hyperlink the way it is. It is not possible to use the form or post of some sort for the hyperlink. form will work with the submit button where we can use post or hidden. Hyperlink meant words or sentences that have underline underneath it, when

Re: [PHP] Does $_SESSION work in any release?

2002-04-13 Thread Patrick Aland
I am doing a session_start and am definately not using session_register (minus ? and ?, the exact code is in my original email). phpinfo reports register_globals is off. Is there something else in the php.ini file I need to turn on to 'enable' $_SESSION? I tried using the php.ini-recommended and

Re: [PHP] does this work?

2002-01-10 Thread Kevin Stone
Hmm I believe that the mysql_query() function requires quotes around the query statement even it it is being passed as a variable.. mysql_query($tempsql, $db); -Kevin It seems that I have a parse error somewhere in the following code (since that's the only code in my script, it's a test

Re: [PHP] does this work?

2002-01-10 Thread R'twick Niceorgaw
what eact parse error you are getting ? and what is that line ? Is it giving an error like undefined variable $temprow[count]; or some thing like that ? You may try to change the mysql_fetch_row line to the following $temprow = mysql_fetch_array($tempresult, MYSQL_ASSOC); - Original

Re: [PHP] does this work?

2002-01-10 Thread Erik Price
I tried that... I get the same error (same line and everything). As a side note, I haven't ever had to quote the first argument in mysql_query() before... This is quite a conundrum, eh? Erik On Friday, January 11, 2002, at 04:25 AM, Kevin Stone wrote: Hmm I believe that the mysql_query()

RE: [PHP] does this work?

2002-01-10 Thread Rick Emery
Show all your code. Did you open a connection to the MYSQL server? If so, show the code. -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 10, 2002 3:29 PM To: PHP Subject: [PHP] does this work? It seems that I have a parse error somewhere in the

RE: [PHP] does this work?

2002-01-10 Thread Rick Emery
Show all your code. Did you open a connection to the MYSQL server? If so, show the code. What is the exact error that you get? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 10, 2002 3:29 PM To: PHP Subject: [PHP] does this work? It seems that

RE: [PHP] does this work?

2002-01-10 Thread Rick Emery
quotes are not needed -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 3:26 AM To: Erik Price; PHP (E-mail) Subject: Re: [PHP] does this work? Hmm I believe that the mysql_query() function requires quotes around the query statement even

Re: [PHP] does this work?

2002-01-10 Thread Erik Price
On Thursday, January 10, 2002, at 04:39 PM, Rick Emery wrote: Show all your code. Did you open a connection to the MYSQL server? If so, show the code. Okay, but I changed some personal info (that I know is definitely correct): ?php // arraytest.php $db = mysql_connect(hostname,

Re: [PHP] does this work?

2002-01-10 Thread Erik Price
Wait, my bad. Typo... all my fault. I feel like an ass. Erik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] does this work?

2002-01-10 Thread LaserJetter
you have a ?PHP tag missing between body and $tempsql. did you remove this for the purose of this posting or is this what's causing the problem?? Rick Emery [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Show all your code. Did you open a connection to the

RE: [PHP] does this work?

2002-01-10 Thread Martin Towell
'; PHP Subject: RE: [PHP] does this work? Show all your code. Did you open a connection to the MYSQL server? If so, show the code. -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 10, 2002 3:29 PM To: PHP Subject: [PHP] does this work? It seems

Re: [PHP] does this work?

2002-01-10 Thread Erik Price
But as I was writing before, what I'm really trying to do with this isn't just echo the COUNT of records in a table. What do I need to separate the array $temprow into pieces so that I can get at the data: $tempsql = SELECT divisions.div_name, divisions.div_id FROM divisions;

Re: [PHP] does this work?

2002-01-10 Thread Sam Masiello
-1362 X289 [EMAIL PROTECTED] - Original Message - From: Erik Price [EMAIL PROTECTED] To: Kevin Stone [EMAIL PROTECTED] Cc: PHP (E-mail) [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 4:43 PM Subject: Re: [PHP] does this work? I tried that... I get the same error (same line

Re: [PHP] does this work?

2002-01-10 Thread Erik Price
On Thursday, January 10, 2002, at 05:16 PM, Martin Towell wrote: is this valid in PHP?? (haven't tried it myself yet...) $tempsql = SELECT COUNT(*) AS count FROM divisions; maybe it needs to be on one line??? It turns out that my problem was a typo. I apologize

Fwd: RE: [PHP] does this work?

2002-01-10 Thread [EMAIL PROTECTED]
and it would be like using the statement $a = $a; very very useless! bvr. On Thu, 10 Jan 2002 15:39:27 -0600, Rick Emery wrote: quotes are not needed mysql_query($tempsql, $db); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] does this work?

2002-01-10 Thread Alnisa Allgood
At 4:28 PM -0500 1/10/02, Erik Price wrote: PS: what I am -really- trying to do is dynamically fill in a select listbox with options that correspond to all of the records in a given table. Like so: form select ?php foreach

Re: [PHP] does this work?

2002-01-10 Thread DL Neil
2002 22:15 Subject: Re: [PHP] does this work? But as I was writing before, what I'm really trying to do with this isn't just echo the COUNT of records in a table. What do I need to separate the array $temprow into pieces so that I can get at the data: $tempsql = SELECT divisions.div_name

RE: [PHP] does this work?

2002-01-10 Thread Miles Thompson
to be on one line??? -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 8:39 AM To: 'Erik Price'; PHP Subject: RE: [PHP] does this work? Show all your code. Did you open a connection to the MYSQL server? If so, show the code. -Original Message

Re: [PHP] Does PHP work with Sybase ASA?

2001-09-07 Thread Rasmus Lerdorf
Perhaps people expected you to check the docs or the code yourself. If you go to php.net/sybase you will find the functions you need. If you read the user comments on that page you will even find urls to tutorials/faqs on how to install and configure things for PHP to talk to Sybase ASA. eg.

Re: [PHP] Does PHP work with Sybase ASA?

2001-09-07 Thread Krzysztof Kocjan
I suppose You have ASA 6.0 or later version installed on Your machine with Linux. If it is true, then You can install Open Client for ASE 11.0.3 (it is free) and You can communicate via Open Client to ASA. It works only with ASA 6.0 and higher. Then You need to compile PHP with Sybase Open