Re: [PHP-WIN] MYSQL & PHP + GRAPH

2003-01-05 Thread toby z
hi first u ll have to lookup gd and enable it in ur php.ini n u ll have to get tiff and libjpeg on ur machine n here r a few links to graph creation with php http://php.resourceindex.com/Complete_Scripts/Images_and_Graphs/Graph_Creation/ http://www.szewo.com/php/graph/eng.phtml http://www.adit

php-windows Digest 6 Jan 2003 06:47:47 -0000 Issue 1521

2003-01-05 Thread php-windows-digest-help
php-windows Digest 6 Jan 2003 06:47:47 - Issue 1521 Topics (messages 17653 through 17664): loop through string 17653 by: Gregory Lewis 17654 by: Ignatius Reilly 17656 by: Cam Dunstan 17657 by: Gregory Lewis 17658 by: Gregory Lewis Re: PHP 4.3.0 no gif

[PHP-WIN] MYSQL & PHP + GRAPH

2003-01-05 Thread RBRoa
Hi, I am using MySQL as my database backend server and PHP to poll the data. I am wondering if someone could guide in presenting this data by a GRAPH using PHP. I really appreciate ur reply R R-- -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

Re: [PHP-WIN] GD, UNICODE & RTL

2003-01-05 Thread toby z
hi i ve been workin with unicode for the last few months n i think ill be able to help you if u ll pleez be a bit more precise bout this why do u want to write in bitmap do u want to use it with php or what if u just wanna type sumthin in unicode from left to write in a bitmap file selec

[PHP-WIN] GD, UNICODE & RTL

2003-01-05 Thread Mottaghi
Hi all, I want to write a Right-to-Left (like Arabic languages) sentence in a bitmap by unicode...but HOW??? :) thanks, bye -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Capturing Events

2003-01-05 Thread Luke Woollard
Dude -> PHP is a (primarily) a server side scripting language so capturing events through functions like 'onMouseOver' etc aren't applicable.. http://www.php.net/manual/en/tutorial.php Luke Woollard -Original Message- From: Harvey Frey [mailto:[EMAIL PROTECTED]] Sent: Monday, 6 Janua

[PHP-WIN] Capturing Events

2003-01-05 Thread Harvey Frey
All: Javascript has a multitude of functions to capture events, like onClick. I haven't seen similar functions described in the manual for PHP. Have I just missed them? Or are those facilities not available in PHP? If they are available, I'd appreciate being pointed to the documentation. Thank

Fw: [PHP-WIN] PHP from the Browser?

2003-01-05 Thread Harvey Frey
Steve: Hoo Ha! That just about does it! As you suggested, I downloaded the free Maguma IDE. I told it where the php.exe was, and set it to associate with .php extensions. Now I can click on any .php file, and the Maguma IDE comes up with the code. Hit F5 and I've got the output

Re: [PHP-WIN] loop through string

2003-01-05 Thread Gregory Lewis
Excuse me, that was a thanks to Cam and Ignatius, and the loop-through-llist using the explode function was just the ticket. -Greg Lewis -- Original Message -- From: "Gregory Lewis" <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> Date: Sun, 5 Jan 200

Re: [PHP-WIN] loop through string

2003-01-05 Thread Gregory Lewis
Thanks Cam and Rasmus, looks simple enough. You guys are awesome. -Greg -- Original Message -- From: "Cam Dunstan" <[EMAIL PROTECTED]> Date: Mon, 6 Jan 2003 08:10:43 +1100 >Welcome to the list Greg, > >There are thousand ways - try converting the string to

Re: [PHP-WIN] loop through string

2003-01-05 Thread Cam Dunstan
Welcome to the list Greg, There are thousand ways - try converting the string to an array then looping through the array with either a for() loop, a do-while or a foreach() $my_array = explode(",", $mylist); foreach ($my_array as $one_element) { echo $one_element.""; } - or - $my_array =

Re: [PHP-WIN] PHP 4.3.0 no gif support?

2003-01-05 Thread Paul Roberts
as Rasmus said on phpgeneral " The Windows binary was built without the right #define to enable the GIF support. You will have to wait for the next Windows build before this will work." so it should be fixed in the next Windows build. i believe the patent has expired or will do soon. Best Wis

Re: [PHP-WIN] loop through string

2003-01-05 Thread Ignatius Reilly
// transform string into an array $arr = explode( ',', $mylist ) ; // loop the array foreach( $arr as $element ) Ignatius - Original Message - From: "Gregory Lewis" <[EMAIL PROTECTED]> To: "php-windows" <[EMAIL PROTECTED]> Sent: Sunday, January

[PHP-WIN] loop through string

2003-01-05 Thread Gregory Lewis
Hi my name is Greg Lewis and I'm new to this list and to PHP. I have experience with Cold Fusion, and so hopefully the transition won't be too hard. My first question: How do I loop through a comma delimited list? ex: $mylist = "a,b,c,d,e,f,g"; thanks for your time and patience, Greg -- PHP

php-windows Digest 5 Jan 2003 18:38:14 -0000 Issue 1520

2003-01-05 Thread php-windows-digest-help
php-windows Digest 5 Jan 2003 18:38:14 - Issue 1520 Topics (messages 17648 through 17652): Re: PHP from the Browser? 17648 by: Stephen Edmonds 17649 by: Stephen Edmonds Re: Bundled GD - Gif support? 17650 by: Brian Weil Re: PHP 4.3.0 no gif support? 17651 by

Re: [PHP-WIN] PHP 4.3.0 no gif support?

2003-01-05 Thread Stephen Edmonds
Due to the copyright laws, GD had to remove all gif support. I believe you can still open .gif files, but you can not edit/save them. You should try using something which is open license like a .png file... I am not awear of any gif section in phpinfo... i've yet to see one. I could be wrong, but

Re: [PHP-WIN] PHP 4.3.0 no gif support?

2003-01-05 Thread Brian Weil
So... WIll gif support ever be available on win32? Can a patched gd.dll be found somewhere with readonly gif support or will we have to re-install php when the binary is updated? I've been (patiently) waiting for this since GD1.6. Thanks, Brian "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in messa

Re: [PHP-WIN] Bundled GD - Gif support?

2003-01-05 Thread Brian Weil
Not true! If you read the changelog, you will see that GD is now bundled with PHP and includes readonly gif support. I'm just wondering which functions are considered readonly? "Christoph Petersen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Brian Weil

Re: [PHP-WIN] PHP from the Browser?

2003-01-05 Thread Stephen Edmonds
Actually now that I come to think about it, there is a 3rd option. I use a script editor called Magnum PHP Studio. It has a feature where it can run your script in PHP acting like the webserver. I am not sure if you can use it to submit forms etc etc, but it would provide a basic method for you to

Re: [PHP-WIN] PHP from the Browser?

2003-01-05 Thread Stephen Edmonds
Sorry, but he is right. Your browser can't be set to work with php unless you have a webserver like apache/Xitami/etc... Your two choices are to upload to your host and test, or to download a free webserver... Oh, btw, as for your code: PHP Test "; ?> You don't need that ; as the are on