[PHP] Re: Missing session vars when doing var_dump()

2003-03-20 Thread Bobby Patel
I would think that they are 16 key/value pairs when the MySQL (TEXT) fields are null thus the session variables are NOT set thus NOT present. Hypothsis: I believe that your are using mysql_fetch_array($query_resource), try using the second parameter as well ie. mysql_fetch_array($query_resource,

RE: [PHP] lurker awakes

2003-03-20 Thread Matt Giddings
I don't know of any script that does this, but thats not saying that one doesn't exist. I don't know what software your using, but all passwords should be stored in encrypted format to help deter the use of scripts like this. They may be able to view the contents of the password field

[PHP] function for $array

2003-03-20 Thread pei_world
I want to use the following function the test the array elements, if all element is number return true, otherwise false; but the command marked, it print out only the first char of every strings in the array; can help? ie: ++0++ for 0.234 function check_int_float($array){ $result=true;

[PHP] Re: Missing session vars when doing var_dump()

2003-03-20 Thread Gavin Jackson
Thanks for your input Bobby I was using mysql_fetch_array() but changed to mysql_fetch_assoc() The funny thing is, I have a page that does the var_dump() and all I'm doing is refreshing the page and sometimes I get 18 other times 16 variables Gavin Auckland, New Zealand -Original

[PHP] Saving a file as ASCII?

2003-03-20 Thread Jay Paulson
Quick question... when saving a file using the fwrite() function in a Unix enviroment as a text file does it get saved as ASCII??? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fw: [PHP] function for $array

2003-03-20 Thread Kevin Stone
- Original Message - From: pei_world [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 20, 2003 4:30 PM Subject: [PHP] function for $array I want to use the following function the test the array elements, if all element is number return true, otherwise false; but the

Re: [PHP] Saving a file as ASCII?

2003-03-20 Thread David T-G
Jay -- Quick chastisement: don't hijack threads. This has nothing to do with sessions. When starting a new topic and asking a fresh question, please start a fresh email rather than replying to any old thing in your mailbox. ...and then Jay Paulson said... % % Quick question... when saving a

[PHP] XML Problems

2003-03-20 Thread Burhan Khalid
Hello List, Having some serious headaches trying to fix XML integration into a PHP class. Am new to XML, but have been comfortable with PHP for quite a while so please reply accordingly. Here is the problem : * Data handing functions are being called multiple

[PHP] [php]: Loading from array

2003-03-20 Thread Gavin Jackson
Hi there Is there anything I'm doing wrong in the following: $Database = mysql_connect( host, user, password ) or die(Could not connect to database); mysql_select_db( dbname, $Database ) or die(Database does not exist); $Login = strtolower($_POST[Person]);

RES: [PHP] XML Problems

2003-03-20 Thread Piero B. Contezini
I had the same problem a week ago, so i wrote a little function to convert xml files into usable objects (the dom_xmltree function sucks a lot), Basicly it converts the XML data into a object and make arrays for multi nodes, i also have done another function to write the object on disk, may be

Re: [PHP] Q. How to remove new line/CrLf in string??

2003-03-20 Thread Jack Schroeder
Thank you very much. Jack André cupini wrote: Part 1.1Type: Plain Text (text/plain) Encoding: quoted-printable -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RES: [PHP] XML Problems

2003-03-20 Thread Piero B. Contezini
Another thing, very cool that site, weather thru XML, i'll make some scripts myself for it ;P If you want to open it directly from the web, use fopen() and domxml_open_mem, instaed of domxml_open_file, it will make you use the web service without downloading any stumb file. Just do $obj =

Re: [PHP] lurker awakes

2003-03-20 Thread steve
Mike/Matt, thanks for the promp response for reference our system: Slackware 8.1, mySQL 3.23.51, apache 1.37 all the passwords look like they are kept in the mysql.users table and the passwords are encrypted (at least in phpMyAdmin 2.4) Steve - Original Message - From: Mike [EMAIL

[PHP] Validation of Numeric string sent in a form

2003-03-20 Thread Orlando Pozo
Hello all, I am Orlando Pozo How could I verify if a variable is a Numeric string? , I need help in this; for example when I submit a form, all texts fields are sent in strings, if you need to verify that the string is all numeric, How could I verify?, thanks for your help.

Re: [PHP] Validation of Numeric string sent in a form

2003-03-20 Thread Charles Kline
is_numeric(yoursting); this returns true if string is a number On Thursday, March 20, 2003, at 08:32 PM, Orlando Pozo wrote: Hello all, I am Orlando Pozo How could I verify if a variable is a Numeric string? , I need help in this; for example when I submit a form, all texts fields are sent

RES: RES: [PHP] XML Problems

2003-03-20 Thread Piero B. Contezini
So ask the administrator to install it, without it kidding with XML will be a hell! Piero -Mensagem original- De: Burhan Khalid [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 20 de março de 2003 22:15 Para: Piero B. Contezini Assunto: Re: RES: [PHP] XML Problems Hello Piero,

Re: [PHP] Validation of Numeric string sent in a form

2003-03-20 Thread Leif K-Brooks
www.php.net/is-numeric Orlando Pozo wrote: Hello all, I am Orlando Pozo How could I verify if a variable is a Numeric string? , I need help in this; for example when I submit a form, all texts fields are sent in strings, if you need to verify that the string is all numeric, How could I verify?,

[PHP] multiple foreach

2003-03-20 Thread Richard Whitney
Maybe someone can see what I'm trying to do with this: foreach($charge as $c){ foreach($size_id as $s){$sql = UPDATE products_to_sizes SET surcharge = '$c' WHERE product_id = '$products_id' AND size_id = '$s'; mysql_query($sql) or die (Couldn't update rows.MYSQL_ERROR()); print $sql.'br';} } I

[PHP] Informix

2003-03-20 Thread Foong
Hello any idea how can i fix this problem when I compile php with informix ERROR: /opt/informix/lib/esql/libifos.so: the use of `mktemp' is dangerous, better use `mkstemp' Foong -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] multiple foreach

2003-03-20 Thread Martin Towell
try this... for ($i = 0; $i count($charge); $i++) { $c = $charge[$i]; $s = $size[$i]; $sql = UPDATE products_to_sizes SET surcharge = '$c' WHERE product_id = '$products_id' AND size_id = '$s'; mysql_query($sql) or die (Couldn't update rows.MYSQL_ERROR()); print $sql.'br'; }

[PHP] Re: credit card validations..

2003-03-20 Thread Manuel Lemos
Hello, On 03/20/2003 03:50 PM, Edward Peloke wrote: The owner of the php site I am working on just told me he want to do credit card validations on the site. Currently, we aren't doing anything with credit cards. I have no idea as to where to even start with this. Should I simply go the paypal

RE: [PHP] Cleaning user data

2003-03-20 Thread John W. Holmes
I still fail to see how BB code helps in any way, since you have to make these same considerations. But, like I said, maybe I'm missing something. :-) I agree pretty much. The only way it helps is that it's easier for people to pick up, however slightly. Instead of explaining to people to use

RE: [PHP] php, mysql, and method question

2003-03-20 Thread John W. Holmes
i have a table that contains articles. i have another table which contains the order 1 - 9 that i would like to display them in. this part is done, and is not a problem. here is where I am not sure how to proceed. 1. tbl_display_order - can only have 9 records in it (or do i just ignore

RE: [PHP] multiple foreach

2003-03-20 Thread Richard Whitney
Thank you, Martin - you're a certifiable genius! It's just that $size needed to be $size_id - I fixed that, though. Thanks! Richard Quoting Martin Towell [EMAIL PROTECTED]: ### try this... ### ### for ($i = 0; $i count($charge); $i++) ### { ### $c = $charge[$i]; ### $s = $size[$i]; ###

[PHP] Re: Validation of Numeric string sent in a form

2003-03-20 Thread Manuel Lemos
Hello, On 03/20/2003 10:32 PM, Orlando pozo wrote: How could I verify if a variable is a Numeric string? , I need help in this; for example when I submit a form, all texts fields are sent in strings, if you need to verify that the string is all numeric, How could I verify?, thanks for your help.

Re: [PHP] Increase a month

2003-03-20 Thread Justin French
For this exact instance (ie, trying to get the current month, and next month) then all you need is: ? $thisMonth = date(F,strtotime('today')); $nextMonth = date(F,strtotime('next month')); ? Justin on 21/03/03 1:00 AM, shaun ([EMAIL PROTECTED]) wrote: Hi, could someone tell me why this:

Re: [PHP] Re: Missing session vars when doing var_dump()

2003-03-20 Thread Bobby Patel
Are the queries the exact same every time you refresh them? This seems just to be programming logic (I guess). Post some code and maybe someone (or I) will be able to help you out. Gavin Jackson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Thanks for your input Bobby I was using

Re: [PHP] Session Question

2003-03-20 Thread Justin French
Hi, A session is meant to exist on one domain... You could pass the session to another domain to *hold* for you: a href='https://secure.com/enter?oldSID=?=session_id();?'secure checkout/a Then the secure domain would be responsible for remembering the old session id, and passing it back to

RE: [PHP] Re: Missing session vars when doing var_dump()

2003-03-20 Thread Gavin Jackson
Hi Bobby The following is a copy and paste of the page I'm using to generate the problem. I have 18 keys in the $_SESSION variable and just by simply refreshing the page with the following code, it returns either array(0){} or session info and array(18){ will all the correct variables }. I must

[PHP] $siteGalleryUserPath when it is made by PHP dose not give 0777 access for $destination to be made.

2003-03-20 Thread Philip J. Newman
MY ERROR: Warning: mkdir(/home/newmanpj/public_html/galleries/philip/20030320223553) [function.mkdir]: Permission denied in /home/crushme/public_html/siteadmin/upload_set_step3.php on line 72 MY PROBLEM: $siteGalleryUserPath when it is made by PHP dose not give 0777 access for $destination

[PHP] echo

2003-03-20 Thread Sebastian
hello all, is it possible to delay an echo say by 5 seconds after the page loads? cheers, - Sebastian

[PHP] Super Globals

2003-03-20 Thread Oscar F
Hello, I installed Apache/PHP in my local machine for testing purposes, but I'm trying to run a script that uses super global vars ($_SERVER['QUERY_STRING'], etc) and for some reason it does not seem to be working.. Can super globals be off like register_global on php.ini? if so what is the

RE: [PHP] echo

2003-03-20 Thread Martin Towell
is this what you're after ? flush(); wait(5); // I think wait() is in seconds echo blah; -Original Message- From: Sebastian [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 2:54 PM To: php list Subject: [PHP] echo hello all, is it possible to delay an echo say by 5 seconds

Re: [PHP] Super Globals

2003-03-20 Thread Oscar F
Hello, Yep, I just upgraded to 4.3.2-RC1 and now it works fine, thanks!. #Of. Adrian Portsmouth wrote: Hi Oscar, The super globals don't exist in the version of PHP you are using, they were only introduced PHP = 4.1.0 Kind Regards Ade www.phpscriptsearch.com -- PHP General Mailing List

Re: [PHP] echo

2003-03-20 Thread Sebastian
php has a wait function? I didn't know that... But i get: Fatal error: Call to undefined function: wait() I just want to delay some text from loading too quick. i am sure is can be done in java but i don't have any experience in it :s cheers, - Sebastian - Original Message - From:

Re: [PHP] Re: Missing session vars when doing var_dump()

2003-03-20 Thread Bobby Patel
If you it's either ALL or Nothing then I would think it has something to do with retrieving sessions from the client (in the form of the cookie) or on the server (in the form of the session file, default is /tmp on *nix systems). I ran your script on my server where I have session varaibles and I

Re: [PHP] PHP and file extensions

2003-03-20 Thread Nikunj Virani
What about IIS. This is what the customer is usingand I know d*** about IIS. I would assume that there is a similar thing for IIS, but have no idea where to even look. If you are using IIS 3.0 Check out install.txt file which comes with PHP Win32 Binary. It says: Run Regedit. Navigate

Re: [PHP] echo

2003-03-20 Thread Chris Shiflett
--- Sebastian [EMAIL PROTECTED] wrote: is it possible to delay an echo say by 5 seconds after the page loads? This sounds similar to a little script I wrote a while back to demonstrate flush() for someone. Maybe it will help you: http://shiflett.org/tutorials/php_flush.php Chris = Become

RE: [PHP] echo

2003-03-20 Thread Martin Towell
sorry - sleep(5); -Original Message- From: Sebastian [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 3:58 PM To: Martin Towell; php list Subject: Re: [PHP] echo php has a wait function? I didn't know that... But i get: Fatal error: Call to undefined function: wait() I just

Re: [PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Nikunj Virani
This articles in PHPBuilder are really good starts on the topic: http://phpbuilder.com/columns/wiesendanger20001218.php3 http://phpbuilder.com/columns/allan2830.php3 http://phpbuilder.com/columns/nasser20030219.php3 Regards, Nikunj Virani -- PHP General Mailing List

[PHP] Sessions question

2003-03-20 Thread Beauford.2002
I have read some posts to this list on sessions and have read as much as I can find on them, but one problem still exists which I can't figure out. How do I kill the session when the user leaves my site. So if a user is on www.mine.com and logs in successfully, then goes to www.hers.com - the

Re: [PHP] Sessions question

2003-03-20 Thread Jason Wong
On Friday 21 March 2003 13:57, Beauford.2002 wrote: I have read some posts to this list on sessions and have read as much as I can find on them, but one problem still exists which I can't figure out. How do I kill the session when the user leaves my site. There is simply no way to tell when

Re: [PHP] echo

2003-03-20 Thread Sebastian
thank you. now we're talking, Works great :) cheers, - Sebastian - Original Message - From: Martin Towell [EMAIL PROTECTED] | sorry - sleep(5); | | -Original Message- | From: Sebastian [mailto:[EMAIL PROTECTED] | | php has a wait function? I didn't know that... But i get: |

[PHP] Select email addresses from MySQL

2003-03-20 Thread Tim Thorburn
Hi, A few days ago I posted a question about sending mass emails through PHP - the good news is I've got my script sending an email to each address stored in my MySQL database. Now my client would like the ability to individually select the email addresses that are sent out. Has anyone done

Re: [PHP] Sessions question

2003-03-20 Thread Beauford.2002
What about HTTP_REFERER - is there someway I could incorporate it to so if the user didn't come from xxx (a page on my site) then kill the session and redirect him to the login page... - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 21,

Re: [PHP] Sessions question

2003-03-20 Thread Justin French
on 21/03/03 4:57 PM, Beauford.2002 ([EMAIL PROTECTED]) wrote: I have read some posts to this list on sessions and have read as much as I can find on them, but one problem still exists which I can't figure out. How do I kill the session when the user leaves my site. So if a user is on

[PHP] How to send a form automatically?

2003-03-20 Thread Vicente Valero
Hello, I have a form and I have to check the username and password on my DB. If all is ok, then, I have to send by another form this usernma and password to a CGI on a gateway. But this second part I would want to be automatically, I mean, I want to create the structure of the form that the CGI

Re: SPAM: Re: [PHP] Sessions question

2003-03-20 Thread Justin French
on 21/03/03 6:20 PM, Beauford.2002 ([EMAIL PROTECTED]) wrote: What about HTTP_REFERER - is there someway I could incorporate it to so if the user didn't come from xxx (a page on my site) then kill the session and redirect him to the login page... The referrer can maybe *help* (not sure how

[PHP] RE: templating question

2003-03-20 Thread Dan Rossi
i would like to know what good ones out there, fast template uses ereg and is slow , itx screws with the source layout and the output looks shit , smarty wants control of the code , is there anything better than these guys ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: [PHP-DB] Making tree menu

2003-03-20 Thread olinux
There are two ways that I know of the adjacency model and nested sets. adjacency model uses a table structure like category_id | parent_id | category_name so if i want to see all categories belonging to category 12 - SELECT * FROM cat_table WHERE parent_id=12; there are a few articles out

<    1   2