Re: [PHP] Newbi Question with calculate

2011-04-06 Thread Me
...@silvio-siefke.de To: php-general@lists.php.net Sent: Wed, Apr 6, 2011 12:50:20 GMT+00:00 Subject: [PHP] Newbi Question with calculate Hello, i have write a script for my Stock portfolio and now im not really find something which can me help. In the table php calculate me the Present Value

Re: [PHP] Looking for Tool to read JSON format

2011-04-01 Thread Me
: [PHP] Looking for Tool to read JSON format On 2/04/2011, at 10:19 AM, Michelle Konzack wrote: Hello *, curently I am coding on my new Intranet Interface, but some teleguided servers return only JSON or YAML files. Can someone tell me, how to import JSON files in PHP 5/6? Thanks, Greetings

RE: [PHP] Making Graph / Chart

2004-01-28 Thread unkno me
is NOT built with GD support. My question is: Can I load GD as a separate .so with dl(gb.so) instead of building PHP again? Thanks! -Original Message- From: unkno me [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 5:25 PM To: [EMAIL PROTECTED] Subject: [PHP] Making Graph

[PHP] Making Graph / Chart

2004-01-27 Thread unkno me
Hi, Does anyone know what function is needed to make graphic chart like those line / pipe char? Any example? Thanks! __ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhosting.yahoo.com/ps/sb/ -- PHP General Mailing List

[PHP] xslt_create error

2003-11-21 Thread Mr. Me
Hi! I get the error: Fatal error: Call to undefined function: xslt_create() on line 5 when I try a call to the function... I'm using a webhotel with PHP: PHP Version 4.3.3 System FreeBSD web06.talkactive.net 4.7-RELEASE FreeBSD 4.7-RELEASE #0: Wed Oct i386 Build Date Aug 29 2003 16:48:03

[PHP] Re: excluding same field values in mysql

2003-02-19 Thread no-spam----me
In your query throw a 'DISTINCT' in right after your 'SELECT'; Sunfire [EMAIL PROTECTED] wrote: hi im making a mailing system for a company. i have to find all email addresses in a table and send email to all of them. the problem comes in when more than 1 company has the same email address

[PHP] Re: Associative vs normal arrays

2003-02-02 Thread no-spam----me
No functions that I can think of but you can write one like this: $arrayType = 'numeric'; foreach($myArray as $key = $value) { if(!is_numeric($key)) { $arrayType = 'associative'; } } Also remember that an array can be both! Larry Is there a way to determine if an array

[PHP] Multiple Files Upload

2002-12-17 Thread Hynek Semecky ME
Hello list, Is it possible to upload multiple files to server using submit form not by selecting one by one, but selecting f.ex. 150 files at once and click 'SEND'? Thanks a lot fro any help. Hynek Semecky www.semecky.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Hynek Semecký ME
Files Upload when you say not but selecting one by one do you mean you don't want to select one, then select another, etc and then hit submit to upload them all? Do you want to browse to the file, highlight several, and then upload? Eddie -Original Message- From: Hynek Semecky ME [mailto

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Hynek Semecký ME
Even if I select one by one and then hit UPLOAD ? Hynek -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: 17. prosince 2002 15:51 To: [EMAIL PROTECTED] Subject: Re: [PHP] Multiple Files Upload On Tuesday 17 December 2002 22:44, Hynek Semecký ME wrote: Ideally yes

RE: [PHP] Multiple Files Upload

2002-12-17 Thread Hynek Semecký ME
Could you give me an idea ? Hynek -Original Message- From: Edward Peloke [mailto:[EMAIL PROTECTED]] Sent: 17. prosince 2002 16:28 To: [EMAIL PROTECTED] Subject: RE: [PHP] Multiple Files Upload yep, this can be done -Original Message- From: Hynek Semecký ME [mailto:[EMAIL

[PHP] novice question

2002-02-28 Thread me us
Hi Id reelly like to know the syntax for returning results from a called function to the program that called it;) ? program add($a,$b); echo$ab; ? === ? function add($a,$b) { $ab =$a+$b; } return?? ? Many many thanks JD