RE: [PHP] Is It Possible to Tell PHP To Output x Decimal Places Per Float?

2003-06-09 Thread John W. Holmes
Is it possible to tell PHP when converting a number to a string (i.e. in an echo or print command) to use x decimal places? Yes, it is. Specifically, if I ?php echo '$' . $some_price; ? And some_price is $1.50, it outputs: $1.5 Thanks in advance, You're welcome. ---John W

Re: [PHP] Is It Possible to Tell PHP To Output x Decimal Places PerFloat?

2003-06-09 Thread Lars Torben Wilson
On Mon, 2003-06-09 at 15:22, Dan Anderson wrote: Is it possible to tell PHP when converting a number to a string (i.e. in an echo or print command) to use x decimal places? Specifically, if I ?php echo '$' . $some_price; ? And some_price is $1.50, it outputs: $1.5 Thanks

Re: [PHP] Is this possible? Group related results from mysql to one field

2003-03-08 Thread Marek Kilimajer
The only way that comes to my mind is using a SET column type - in related table you would not wave toid relating to categories, but instead it would be of type SET(demonstrations,people). This column can be set to -empty, no category demonstrations people demonstrations,people But SET column

[PHP] Is this possible? Group related results from mysql to one field

2003-03-06 Thread Victor Spång Arthursson
Hi! Perhaps this is a little bit of topic, but if it's not possible to fix directly when the result is returning from mysql I need some tips on an intelligent solution... This is the problem: I'm searching the database for files and i get some results. In the sql I have a LIMIT to split the

Re: [PHP] Constant Arrays Possible?

2003-02-23 Thread Ernest E Vogelsinger
At 20:28 22.02.2003, Daniel R. Hansen said: [snip] Is it possible to define a constant that is an array of other predefined constants? If so, what would the syntax be? I'm trying something like the following (all items prefixed with an uppercase G are

FW: [PHP] Constant Arrays Possible?

2003-02-23 Thread Daniel R. Hansen
that uses its data. -Original Message- From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED] Sent: Sunday, February 23, 2003 6:56 AM To: Daniel R. Hansen Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Constant Arrays Possible? At 20:28 22.02.2003, Daniel R. Hansen said

Re: [PHP] Constant Arrays Possible?

2003-02-23 Thread David T-G
Daniel -- ...and then Daniel R. Hansen said... % % Is it possible to define a constant that is an array of other predefined Nope. From the manual: Only scalar data (boolean, integer, float and string) can be contained in constants. HTH HAND :-D -- David T-G *

Re: FW: [PHP] Constant Arrays Possible?

2003-02-23 Thread Ernest E Vogelsinger
At 15:35 23.02.2003, Daniel R. Hansen said: [snip] I know constants can't be changed or undefined; the use I have in mind won't [snip] Sorry, copied/pasted the wrong paragraph. The paragraph I wanted to include here

[PHP] Is it possible to Include a php source file ?

2003-02-23 Thread Rohin Gosling
this time ! Is it possible to include a *.php source file from inside another php source file, an a fashion similar to that of using the include directive in C or C++ ? Or alternatively, is there a way to call a php script stored in another file from inside a php script. Rohin -- PHP General

Re: [PHP] Is it possible to Include a php source file ?

2003-02-23 Thread Joachim Krebs
that the message may not appear strait away. So I'm not quite sure what's it going on here. Anyway, back to my question. Hopefully it will make it into the news group this time ! Is it possible to include a *.php source file from inside another php source file, an a fashion similar

Re: [PHP] Is it possible to Include a php source file ?

2003-02-23 Thread Sunfire
.. (sorry wrong list for that but...) - Original Message - From: Rohin Gosling [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, February 23, 2003 4:32 PM Subject: [PHP] Is it possible to Include a php source file ? First up, I sent this same message a few hours ago, but I do not see

[PHP] Constant Arrays Possible?

2003-02-22 Thread Daniel R. Hansen
Is it possible to define a constant that is an array of other predefined constants? If so, what would the syntax be? I'm trying something like the following (all items prefixed with an uppercase G are constants) without success: define(GaNavButtons, array( GnavSectionHome = array (

[PHP] flashing text possible on PDA?

2003-02-22 Thread Denis L. Menezes
Hello friends. I am developing some light pages on the web basically for access by PDAs. I need to put and alert for some members so that as soon as they log in, the next page will show a flashing alert on the page. Can anyone suggest how I can make text flash on a PDA considering that the PDA

Re: [PHP] flashing text possible on PDA?

2003-02-22 Thread Leo Spalteholz
On February 22, 2003 04:38 pm, Denis L. Menezes wrote: Hello friends. I am developing some light pages on the web basically for access by PDAs. I need to put and alert for some members so that as soon as they log in, the next page will show a flashing alert on the page. Can anyone suggest

RE: [PHP] flashing text possible on PDA?

2003-02-22 Thread John W. Holmes
not support many Javascript commands? This has nothing to do with PHP. Search google, but I'll wager it's not possible. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP General Mailing List (http://www.php.net

[PHP] is it possible to retrieve email from HOTMAIL

2003-02-19 Thread Abu Musaab
I wonder if it is possible to retrieve emails from an email account say in hotmail, yahoo, or any other email provider. silly hah ..? Thanx in advance. _ Add photos to your messages with MSN 8. Get 2 months FREE*.

Re: [PHP] is it possible to retrieve email from HOTMAIL

2003-02-19 Thread Jono Bacon
Abu Musaab wrote: I wonder if it is possible to retrieve emails from an email account say in hotmail, yahoo, or any other email provider. silly hah ..? Thanx in advance. _ Add photos to your messages with MSN 8. Get 2 months

Re: [PHP] is it possible to retrieve email from HOTMAIL

2003-02-19 Thread Abu Musaab
I wonder if it is possible to retrieve emails from an email account say in hotmail, yahoo, or any other email provider. silly hah ..? Thanx in advance. EXPLAINING MY IDEA (in other words): I mean making a script that goes to my email in, say Hotmail, and get all the messages and store them

Re: [PHP] is it possible to retrieve email from HOTMAIL

2003-02-19 Thread David Otton
On Wed, 19 Feb 2003 12:57:42 +, you wrote: I wonder if it is possible to retrieve emails from an email account say in hotmail, yahoo, or any other email provider. http://people.freenet.de/courierdave/ http://httpmail.sourceforge.net/

RE: [PHP] Is this possible with php?

2003-01-11 Thread Rasmus Lerdorf
] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, 10 January 2003 4:06 PM To: [EMAIL PROTECTED] Subject: [PHP] Is this possible with php? I would like to know if the follwing function can be implemneted in php with help of other

Re: [PHP] Is this possible with php?

2003-01-11 Thread Chris Hewitt
[EMAIL PROTECTED] wrote: using MS Word in windows, when a file is saved, can it be AUTOMATICALLY uploaded (via http POST or other mechanism) to a server? Yes, in a webDAV enabled directory on your webserver (http://www.webdav.org). Its a module that you can compile for use with Apache (I'm

Re: [PHP] Is this possible with php?

2003-01-10 Thread Maxim Maletsky
[EMAIL PROTECTED] wrote... : I would like to know if the follwing function can be implemneted in php with help of other tools: in PHP distribution? PHP is the programming language, not a client/server tool. This is definitely something to be an integrated part of something else. using MS

Re: [PHP] Is this possible with php?

2003-01-10 Thread Justin French
on 10/01/03 6:14 PM, Tom Rogers ([EMAIL PROTECTED]) wrote: I use webdrive which allows me to map an ftp site to a windows drive letter so it gets treated as a local drive . very usefull. You can read about it here http://www.webdrive.com/ Does anyone know of a mac (OS8/9 NOT OSX)

Re: [PHP] Is this possible with php?

2003-01-10 Thread Danny Shepherd
, January 10, 2003 11:38 AM Subject: Re: [PHP] Is this possible with php? [EMAIL PROTECTED] wrote... : I would like to know if the follwing function can be implemneted in php with help of other tools: in PHP distribution? PHP is the programming language, not a client/server tool

Re: [PHP] Is this possible with php?

2003-01-10 Thread try
On Fri, Jan 10, 2003 at 12:00:33PM -, Danny Shepherd wrote: Hi, Where did he say he wanted to use Word to edit PHP files? AFAICT the idea was to automatically upload Word files, presumably to make them available on an Intranet for download etc. Yes, automatically upload word file after

[PHP] Is this possible with php?

2003-01-09 Thread try
I would like to know if the follwing function can be implemneted in php with help of other tools: using MS Word in windows, when a file is saved, can it be AUTOMATICALLY uploaded (via http POST or other mechanism) to a server? Currently I need to first save it on my desktop, then upload that

RE: [PHP] Is this possible with php?

2003-01-09 Thread Timothy Hitchens \(HiTCHO\)
(HiTCHO) Open Platform Consulting e-mail: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, 10 January 2003 4:06 PM To: [EMAIL PROTECTED] Subject: [PHP] Is this possible with php? I would like to know if the follwing function can

Re: [PHP] Is this possible with php?

2003-01-09 Thread Tom Rogers
Hi, Friday, January 10, 2003, 4:06:23 PM, you wrote: tnc I would like to know if the follwing function can be implemneted tnc in php with help of other tools: tnc using MS Word in windows, when a file is saved, can it be AUTOMATICALLY tnc uploaded (via http POST or other mechanism) to a server?

[PHP] Theoretical - Device server using PHP - Is this possible?

2002-12-10 Thread Steve Jackson
Hi all, I work for a company that manufactures device servers. They currently have a very low internal memory (about 8MB) which is more than enough for TCP/IP connections (which BTW we just released the code open source to anyone interested www.opentcp.org) to devices but I was wondering if there

Re: [PHP] Theoretical - Device server using PHP - Is this possible?

2002-12-10 Thread @ Edwin
or theories about if this is possible. Not that I can answer you question but I think it is possible to run php (maybe a stripped down version?) with a small amount of memory--there's one that runs on a pda... - E -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-29 Thread Marek Kilimajer
In the browser it might look something like this: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titlePizza place/title script function add(n) { document.pizza.num.value=document.pizza.num.value + n; if(document.pizza.num.value.length!=2) {

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-29 Thread Axis Computers
Message - From: Marek Kilimajer [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Friday, November 29, 2002 7:49 AM Subject: Re: [PHP] Is it possible to do this in PHP ? If it is then, how ? In the browser it might look something like this: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-28 Thread Axis Computers
: Marek Kilimajer [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Wednesday, November 27, 2002 10:34 AM Subject: Re: [PHP] Is it possible to do this in PHP ? If it is then, how ? Using javascript you can change the src of image. So you start with blank image, and if onchange event handler finds

[PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread Axis Computers
Hi, I was wondering if this is possible to in PHP ... I am developing an application for a pizza place, where touch typing interface is much faster than using the mouse, so I was wondering if I can develop an interface with a calculator style keypad, and the codes entered (using something like

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread Robert Cummings
Axis Computers wrote: Hi, I was wondering if this is possible to in PHP ... I am developing an application for a pizza place, where touch typing interface is much faster than using the mouse, so I was wondering if I can develop an interface with a calculator style keypad, and the codes

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread 1LT John W. Holmes
I was wondering if this is possible to in PHP ... I am developing an application for a pizza place, where touch typing interface is much faster than using the mouse, so I was wondering if I can develop an interface with a calculator style keypad, and the codes entered (using something like

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread Brian McGarvie
I was wondering if this is possible to in PHP ... I am developing an application for a pizza place, where touch typing interface is much faster than using the mouse, so I was wondering if I can develop an interface with a calculator style keypad, and the codes entered (using something like

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread Marek Kilimajer
Using javascript you can change the src of image. So you start with blank image, and if onchange event handler finds out the input field has two chars, changes the src of the image to say show_image.php?id=input.value Axis Computers wrote: Hi, I was wondering if this is possible to in PHP

[PHP] is it possible using mysql alone

2002-10-27 Thread gamin
Hi, I want to know if it is possible to do the following in Mysql 3.xx or do i have to write out a php script. table1 has a columns A,B,C table2 also has columns A,B,C. The data in column A is differnt in both tables (though 90% is identical) i want to update B,C in table2 where table1.A =

[PHP] Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread Monty
For a form that allows people to upload image files to the server, I'd like to pop open a small browser window with an Uploading... message once someone clicks on Submit button. Then I'd like the window to automatically close once the process is done and the main browser window refreshes. Can

Re: [PHP] Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread @ Edwin
Hello, Just some ideas... First, I don't think you can pop open a small browser window with PHP--use Javascript. With Javascript you can define the size of the window AND you can make it disappear (after the main browser window refreshes) by using onBlur() then window.close() command. Of

[PHP] Re: Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread Owen Prime
You will have to use mainly Javascript for this. What I have done in the past is: STEP 1. In the form tag put a onSubmit argument which does a window.open(). This should pop up a small window which you can use writeln() to add content to it. Like your 'Uploading...' message or an image. STEP

[PHP] Re: Launching a Browser Win with PHP - Is it possible?

2002-10-14 Thread Owen Prime
Sorry, that should be window.opener.location.reload() instead of refresh(). Owen Prime wrote: You will have to use mainly Javascript for this. What I have done in the past is: STEP 1. In the form tag put a onSubmit argument which does a window.open(). This should pop up a small window

[PHP] is this possible ...

2002-08-10 Thread M.E. Suliman
Hi I need the contents of a form to be emailed as an attached Excel file or html file. Is this possible using PHP. I think comma delimited files open in Excel. Can anyone advise. Thanks in advance Mohamed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] is this possible ...

2002-08-10 Thread Justin French
Yes attaching files to email is possible. There's such a class available at phpclasses.org by Manuel Justin French on 11/08/02 3:53 AM, M.E. Suliman ([EMAIL PROTECTED]) wrote: Hi I need the contents of a form to be emailed as an attached Excel file or html file. Is this possible using

[PHP] Is it possible...

2002-07-27 Thread apollo
Is it possible download php scripts from webpages ? for example i need php.net scripts or others :-) If yes, how ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Is it possible...

2002-07-27 Thread John Holmes
Is it possible download php scripts from webpages ? for example i need php.net scripts or others :-) If yes, how ? Not unless they let you and give you a link to show the source or to download it. You can't get the source for just any PHP page b/c it's parsed on the server and only HTML

Re: [PHP] Is it possible...

2002-07-27 Thread apollo
thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] svg graphics and php : is it possible

2002-07-03 Thread William S.
Perhaps this relates to the original question as an additional feature. What would be the best way to offer SVG content from the main opening page? Since SVG requires a browser that has the approprite plugin or a dedicated browser, is it better to create a hyperlink or maybe have the SVG

[PHP] svg graphics and php : is it possible

2002-07-02 Thread Herve le Martret
Hello, I am interested in creating svg graphics with php like creating a image with gd. I tried a PHP script with : header (Content-type: image/xml+svg); but I don't know how to output correctly svg lines. It is not possible to ouput svg lines with the print command and a command like

Re: [PHP] svg graphics and php : is it possible

2002-07-02 Thread Bogdan Stancescu
I think the proper MIME type for sgv is image/svg-xml. Why aren't you able to output svg lines with print() (or echo())? Bogdan Herve le Martret wrote: Hello, I am interested in creating svg graphics with php like creating a image with gd. I tried a PHP script with : header (Content-type:

Re: [PHP] svg graphics and php : is it possible

2002-07-02 Thread Justin French
If you output the right headers, then output the file (by either passing thru an existing file or building a file), then it should work although I have no experience with exactly what you want -- only with MP3s, images, etc. Justin French on 01/07/02 7:52 PM, Herve le Martret ([EMAIL

Re: [PHP] Is this possible

2002-06-06 Thread Analysis Solutions
On Thu, Jun 06, 2002 at 05:32:45AM -, James Edgar wrote: class myClass { function myFunc($var) { include(xml.inc); $obj = new xml($data,xml); And what happened when you ran this? Why not tell us? In the future, please post

[PHP] Is this possible

2002-06-05 Thread James Edgar
I am trying to run a class inside a class, it says that the object is there but when I go to get the info, it is not there. I have attached the code below. Any help would be greatly appreciated. class myfirstClass { function Track($tracknum) {

RE: [PHP] Is this possible

2002-06-05 Thread Scott Hurring
Edgar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 5:27 PM To: [EMAIL PROTECTED] Subject: [PHP] Is this possible I am trying to run a class inside a class, it says that the object is there but when I go to get the info, it is not there. I have attached the code below. Any

[PHP] Is this possible

2002-06-05 Thread James Edgar
I am trying to run a class inside a class, it says that the object is there but when I go to get the info, it is not there. I have attached the code below and attache the xml.inc file. Any help would be greatly appreciated. class myClass { function myFunc($var)

RE: [PHP] Generate every possible combination

2002-05-16 Thread Lance Lovette
, $a); } } -Original Message- From: Evan Nemerson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 12:17 AM To: [EMAIL PROTECTED] Subject: [PHP] Generate every possible combination I need to generate every possible combination of the the values in an array. For example, if... $array = Array(A, B, C

[PHP] Generate every possible combination

2002-05-15 Thread Evan Nemerson
I need to generate every possible combination of the the values in an array. For example, if... $array = Array(A, B, C); I want to be able to do something like print_r(magic_function($array)); which would output Array ( [0] = ABC [1] = ACB [2] = BAC [3] = BCA

RE: [PHP] Generate every possible combination

2002-05-15 Thread Martin Towell
:17 PM To: [EMAIL PROTECTED] Subject: [PHP] Generate every possible combination I need to generate every possible combination of the the values in an array. For example, if... $array = Array(A, B, C); I want to be able to do something like print_r(magic_function($array)); which would output

[PHP] Is This Possible? (Database - PHP)

2002-05-12 Thread r
Hey there guys, I have a slight problem which i could not solve via Java servlets and now that I am migrating to PHP I was wondering if its possible... I am hosting with a company that has given me a database (MySql) I am using the database for all my apps which are only being accessed via my

Re: [PHP] Is This Possible? (Database - PHP)

2002-05-12 Thread Jason Wong
On Monday 13 May 2002 15:05, r wrote: Hey there guys, I have a slight problem which i could not solve via Java servlets and now that I am migrating to PHP I was wondering if its possible... I am hosting with a company that has given me a database (MySql) I am using the database for all my

RE: [PHP] Is This Possible? (Database - PHP)

2002-05-12 Thread John Holmes
: [PHP] Is This Possible? (Database - PHP) Hey there guys, I have a slight problem which i could not solve via Java servlets and now that I am migrating to PHP I was wondering if its possible... I am hosting with a company that has given me a database (MySql) I am using the database for all my

[PHP] Is it possible to verify that a form submision is not being spoofed?

2002-04-30 Thread Warrick Wilson
I'm having a hard time explaining what I'm trying to do, which is why I'm having a hard time finding anything online/in manuals... My site serves a form for the user to fill in. User has been authenticated with a login and we're using PHP 4 sessions. When using Internet Explorer, the user can

Re: [PHP] Is it possible to verify that a form submision is notbeing spoofed?

2002-04-30 Thread Miguel Cruz
On Tue, 30 Apr 2002, Warrick Wilson wrote: I'm having a hard time explaining what I'm trying to do, which is why I'm having a hard time finding anything online/in manuals... My site serves a form for the user to fill in. User has been authenticated with a login and we're using PHP 4

RE: [PHP] Is it possible to verify that a form submision is not being spoofed?

2002-04-30 Thread Cal Evans
* -Original Message- From: Warrick Wilson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: [PHP] Is it possible to verify that a form submision is not being spoofed? I'm having a hard time explaining what I'm trying to do, which is why I'm having

RE: [PHP] Is it possible to verify that a form submision is notbeing spoofed?

2002-04-30 Thread Miguel Cruz
On Tue, 30 Apr 2002, Cal Evans wrote: Generate a random number when creating a form, store it in the session and in a hidden on the form. Then when the post comes back, make sure the hidden is there and that it matches the one in the session. That doesn't help, that I can tell - when the form

Re: [PHP] Is it possible to verify that a form submision is not being spoofed?

2002-04-30 Thread Jason Wong
On Wednesday 01 May 2002 04:05, Cal Evans wrote: Generate a random number when creating a form, store it in the session and in a hidden on the form. Then when the post comes back, make sure the hidden is there and that it matches the one in the session. But the flaw in that is if the nasty

RE: [PHP] Is it possible to verify that a form submision is not being spoofed?

2002-04-30 Thread James E. Hicks III
- From: Cal Evans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 4:05 PM To: Warrick Wilson; [EMAIL PROTECTED] Subject: RE: [PHP] Is it possible to verify that a form submision is not being spoofed? Generate a random number when creating a form, store it in the session and in a hidden

Re: [PHP] Is it possible to verify that a form submision is notbeing spoofed?

2002-04-30 Thread Justin French
In addition to everything else discussed: 1. make sure the referring page (ie, the form) was as expected (ie, an address you trust). This may block a small % or users who's browser doesn't set a referrer string. 2. ensure that all values were submitted via $_POST, which will prevent the user

[PHP] Is it possible to call an external client or server program?

2002-03-31 Thread martinahingis
Is it possible to call an external program via PHP. The program will most probably be in server. My aim is to call a scanner input program and want the client to scan a paper and upload it. thanks for help. martina. -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Is it possible to call an external client or server program?

2002-03-31 Thread Cal Evans
PROTECTED] Subject: [PHP] Is it possible to call an external client or server program? Is it possible to call an external program via PHP. The program will most probably be in server. My aim is to call a scanner input program and want the client to scan a paper and upload it. thanks for help

Re: [PHP] Is it possible to call an external client or server program?

2002-03-31 Thread martinahingis
Original Message- From: martinahingis [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 31, 2002 6:26 PM To: [EMAIL PROTECTED] Subject: [PHP] Is it possible to call an external client or server program? Is it possible to call an external program via PHP. The program will most probably be i

RE: [PHP] Is it possible to call an external client or server program?

2002-03-31 Thread Cal Evans
Message- From: martinahingis [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 31, 2002 7:05 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Is it possible to call an external client or server program? hmm.. very thanks Cal. I don't have any problem with security settings or another client side setting

[PHP] Is it possible to pass javascript variables to PHP without user's activity?

2002-03-29 Thread Andrew Korsak
Hello. I got a question. Is it possible to pass javascript variables to PHP without user's activity, using post method? I want to read user cookie with javascript and pass it to PHP. I guess I will need to use meta tag to do this? -- Message Info. Date: Friday, March 29, 2002 Time:

Re: [PHP] Is it possible to pass javascript variables to PHP withoutuser's activity?

2002-03-29 Thread Miguel Cruz
On Fri, 29 Mar 2002, Andrew Korsak wrote: I want to read user cookie with javascript and pass it to PHP. PHP already gets the cookie information. What do you need JavaScript for? miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Is it possible to...

2002-02-19 Thread Chris Boget
Given the following code: script language=php function function1() { global $bob; echo Bob = $bob\n; } function function2() { $GLOBALS[bob] = Joe Bob Briggs; function1(); } function2(); /script function1() can echo out the value of $bob

RE: [PHP] Is it possible to...

2002-02-19 Thread Rick Emery
General Subject: [PHP] Is it possible to... Given the following code: script language=php function function1() { global $bob; echo Bob = $bob\n; } function function2() { $GLOBALS[bob] = Joe Bob Briggs; function1(); } function2(); /script

RE: [PHP] Is this possible?

2002-02-14 Thread Rick Emery
= mysql_fetch_array($results); $loc = http://www.mydomain.com/.$row['directory']; header( location: $loc); } exit; ? -Original Message- From: Leif K-Brooks To: [EMAIL PROTECTED] Sent: 2/13/02 8:37 PM Subject: [PHP] Is this possible? I would like to have multiple domains and have them forwarded

[PHP] Is this possible?

2002-02-13 Thread Leif K-Brooks
I would like to have multiple domains and have them forwarded to different folders, so I'd only need one hosting account. Example: www.domain1.com goes to www.domain.com/domain1 www.domain2.com goes to www.domain.com/domain2 I would like to do this in php. Of course, to do this, I'd need to

RE: [PHP] Is this possible?

2002-02-13 Thread Rick Emery
To: [EMAIL PROTECTED] Sent: 2/13/02 8:37 PM Subject: [PHP] Is this possible? I would like to have multiple domains and have them forwarded to different folders, so I'd only need one hosting account. Example: www.domain1.com goes to www.domain.com/domain1 www.domain2.com goes to www.domain.com

[PHP] Is this possible?

2002-02-06 Thread Raymond Lilleodegard
several sizes. So... how do I get only one row from the product table and two rows from the price table in one line in a page? Is it possible? Best regards Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is this possible?

2002-02-06 Thread Erik Price
On Wednesday, February 6, 2002, at 12:16 PM, Raymond Lilleodegard wrote: So... how do I get only one row from the product table and two rows from the price table in one line in a page? Use this query: SELECT producttable.onerow, pricetable.onerow, pricetable.tworow FROM producttable,

Re: [PHP] Is this possible?

2002-02-06 Thread val petruchek
] - Original Message - From: Raymond Lilleodegard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 06, 2002 7:16 PM Subject: [PHP] Is this possible? Hi! I have this tricky case, at lest for me : ) I'm trying to get some data out of two tables and listing the data

Re: [PHP] Is this possible?

2002-02-06 Thread DL Neil
=P1.ID AND P.NUM=P2.ID AND P1.SIZE=SIZE1 AND P2.SIZE=P2 Valentin Petruchek (aki Zliy Pes) http://zliypes.com.ua mailto:[EMAIL PROTECTED] - Original Message - From: Raymond Lilleodegard To: [EMAIL PROTECTED] Sent: Wednesday, February 06, 2002 7:16 PM Subject: [PHP] Is this possible

Re: [PHP] Is this possible?

2002-02-06 Thread Raymond Lilleødegård
PROTECTED] Sent: Wednesday, February 06, 2002 7:20 PM Subject: Re: [PHP] Is this possible? val, Surely this would only be possible if SIZE1 and P2 [sic - maybe SIZE2] were constants, ie that all small packs had SIZE=small and all large packs were defined as SIZE=large. (also that all products

Re: [PHP] Is this possible?

2002-02-06 Thread Julio Nobrega Trabalhando
I am sorry, this has nothing to do with the logic of your code, but instead with style (and a little bit of perfomance, both from you and your system). Isn't easier to escape PHP when you are going to enter html code lines? Like this: ?php if ($myrow = mysql_fetch_array($varetabell) AND

[PHP] Is it possible to bypass max time limit?

2002-01-27 Thread Alan McFarlane
I've got a live script which occasional has to retrieve a file via ftp, download to the server, post-process it then display it. I use caching to check to see if I've already got the file, but if I don't I have to process the ftp_get operation which occasionally times out. So, is it possible to

[PHP] Sending fax with php, is it possible?

2001-11-29 Thread Raymond Lilleodegard
Hi all! I have a little problem here : ) A customer wants a order made by a forminput sent to fax. Is it possible with php? Or do I have to do it some other way? Best regards Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] Sending fax with php, is it possible?

2001-11-29 Thread Jani Mikkonen
A customer wants a order made by a forminput sent to fax. Is it possible with php? Or do I have to do it some other way? Hey, php is a programming language, it does what ever you want (up to certain restrictions ofcourse) But for pointers, try installing hylafax (if you run *nix

Re: [PHP] Sending fax with php, is it possible?

2001-11-29 Thread Raymond Lilleodegard
] wrote in message 001901c178f2$70f1d440$0264a8c0@delenn">news:001901c178f2$70f1d440$0264a8c0@delenn... A customer wants a order made by a forminput sent to fax. Is it possible with php? Or do I have to do it some other way? Hey, php is a programming language, it does what ever you

Re: [PHP] Sending fax with php, is it possible?

2001-11-29 Thread Michael Geier
problem here : ) A customer wants a order made by a forminput sent to fax. Is it possible with php? Or do I have to do it some other way? Best regards Raymond -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [PHP] dynamic menu possible?

2001-09-17 Thread Nikola Veber
Whell, you could use that php script for getting file names and put links toward those files in a layer, which can be controled with java. If you are not a java expert, you can do it with macromedia dreamweaver + extensions. I don't know java, but I made a layer based site at

RE: [PHP] dynamic menu possible?

2001-09-17 Thread Sitkei Pl
Your wanted solution is seen in the "phpXML" demo, by Michael P. Mehl. It is founded at the http://www.phpxml.org/. Try the exciting "xpath" example! -Original Message- From: LRW [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 16, 2001 4:24 PM To: [EMAIL PROTE

[PHP] dynamic menu possible?

2001-09-16 Thread LRW
Hi all. I was wondering if a situation I'll describe below is possible. If it is, I'm hoping someone could point me to the topics I would need to study to learn how to do it. I hate to say that right now I don't have the time to read the Manual or any books cover-to-cover to figure it out...but I

[PHP] Is it possible to detect the Browser type/version in PHP?

2001-09-11 Thread Zhu George-CZZ010
Hi, I once had the Javascript codes to detect the browser type/version (but unfortunately, I lost the codes), does anyone have the Javascipt code? or can PHP do the same job (how?) Thank you very much in advance. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Is it possible to detect the Browser type/version in PHP?

2001-09-11 Thread nayco
:35 PM Subject: [PHP] Is it possible to detect the Browser type/version in PHP? Hi, I once had the Javascript codes to detect the browser type/version (but unfortunately, I lost the codes), does anyone have the Javascipt code? or can PHP do the same job (how?) Thank you very much in advance

Re: [PHP] Is it possible to detect the Browser type/version in PHP?

2001-09-11 Thread B. van Ouwerkerk
Yes. STFW -- www.php.net type detect browser in the searchbox -- click pulldownbox -- select online documentation and click on the little arrow.. http://www.php.net/manual/en/function.get-browser.php http://www.php.net/manual/en/language.variables.predefined.php Next time you can search the

RE: [PHP] Is it possible to detect the Browser type/version in PHP?

2001-09-11 Thread Brian Paulson
Chieftain Online [EMAIL PROTECTED] http://www.chieftain.com -Original Message- From: nayco [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 11, 2001 9:48 AM To: Zhu George-CZZ010; [EMAIL PROTECTED] Subject: Re: [PHP] Is it possible to detect the Browser type/version in PHP

RE: [PHP] Getting any possible value inside an array

2001-07-09 Thread Adrian Ciutureanu
http://php.net/array_unique -Original Message- From: Aaron Bennett [mailto:[EMAIL PROTECTED]] Sent: 8 iulie 2001 08:52 To: [EMAIL PROTECTED] Subject: [PHP] Getting any possible value inside an array Hi everyone... Does someone have a quick and dirty way of returning _any_

[PHP] Getting any possible value inside an array

2001-07-07 Thread Aaron Bennett
Hi everyone... Does someone have a quick and dirty way of returning _any_ possible value contained within an array? For instance: $myarray[0] = red; $myarray[1] = red; $myarray[2] = red; $myarray[3] = blue; $myarray[4] = green; $myarray[5] = blue; $myarray[6] = red; and i'd output red, blue

<    1   2   3   4   >