php-general Digest 9 May 2010 07:00:41 -0000 Issue 6734

2010-05-09 Thread php-general-digest-help
php-general Digest 9 May 2010 07:00:41 - Issue 6734 Topics (messages 305013 through 305016): dynamically generating and retrieving page data using flat files 305013 by: David Mehler 305014 by: Karl DeSaulniers 305015 by: Al 305016 by: Adam Richardson

Re: [PHP] dynamically generating and retrieving page data using flat files

2010-05-09 Thread Adam Richardson
On Sat, May 8, 2010 at 9:41 PM, David Mehler dave.meh...@gmail.com wrote: Hello, I've got a project that i have to reference information stored on one page from another. This page I won't be visiting first, and at the moment i'd prefer to use flat php files, but should that prove to hard

[PHP] xpath help

2010-05-09 Thread Gary
If I have a document containing, say: html body table tbody tr tdfont ...foo1/font/td tdfont ...bar1/font/td /tr tr td font ...foo2/font /td td font ...bar2/font /td /tr ... How do I get at bar2? I tried everything, based on an xpath

Re: [PHP] xpath help

2010-05-09 Thread Peter Lind
On 9 May 2010 10:31, Gary php-gene...@garydjones.name wrote: If I have a document containing, say: html  body  table   tbody    tr     tdfont ...foo1/font/td     tdfont ...bar1/font/td    /tr    tr     td      font ...foo2/font     /td     td      font ...bar2/font     /td    /tr

Re: [PHP] PHP GD - Create a flag

2010-05-09 Thread Ashley Sheridan
On Sat, 2010-05-08 at 18:48 +0200, Giorgio wrote: Hi, i've just started using GD libraries. My purpose is to create something like a flag. So that i have a 600*600 px background image, and a 1*1 px image for each colour I need. Ok now let's say i want to colour a third of the

Re: [PHP] PHP GD - Create a flag

2010-05-09 Thread Giorgio
Thankyou Ashley, as I only need 5 colors for each image, my idea was to create a single pixel image for each color and save it on the hd (so that i don't have to create it every time). I've finally used this code: imagecopymerge($base, $img1, 0, 0, 1, 1, 100, 500, 75); imagecopymerge($base,

Re: [PHP] PHP GD - Create a flag

2010-05-09 Thread Ashley Sheridan
On Sun, 2010-05-09 at 14:21 +0200, Giorgio wrote: Thankyou Ashley, as I only need 5 colors for each image, my idea was to create a single pixel image for each color and save it on the hd (so that i don't have to create it every time). I've finally used this code: imagecopymerge($base,

Re: [PHP] PHP GD - Create a flag

2010-05-09 Thread Ashley Sheridan
On Sun, 2010-05-09 at 14:21 +0200, Giorgio wrote: Thankyou Ashley, as I only need 5 colors for each image, my idea was to create a single pixel image for each color and save it on the hd (so that i don't have to create it every time). I've finally used this code: imagecopymerge($base,

[PHP] CSS - Image or object Slide left/right and fade in using jquery

2010-05-09 Thread Don Wieland
Does anyone have any resources that demonstrates using jquery to have an image or object slide in from the left and then fade in. I would appreciate it. Thanks! Don Wieland D W D a t a C o n c e p t s ~ d...@dwdataconcepts.com Direct Line - (949) 305-2771

Re: [PHP] CSS - Image or object Slide left/right and fade in using jquery

2010-05-09 Thread Ashley Sheridan
On Sun, 2010-05-09 at 06:28 -0700, Don Wieland wrote: Does anyone have any resources that demonstrates using jquery to have an image or object slide in from the left and then fade in. I would appreciate it. Thanks! Don Wieland D W D a t a C o n c e p t s

[PHP] PHP Encoder like IonCube

2010-05-09 Thread shiplu
Is there any php encoder like IonCube ? Looking for an opensource solution. My main target is to deliver encoded php codes so that it can not be re-engineered. Shiplu Mokadd.im My talks, http://talk.cmyweb.net Follow me, http://twitter.com/shiplu SUST Programmers,

[PHP] __call and recursion

2010-05-09 Thread Daniel Kolbo
Hello, I've defined a __call() method inside a class. Within the __call() method (after testing that the method exists and is callable I am using: call_user_func_array(array($this,$method), $args); However, this seems to be an infinite loop (and is crashing my test apache server). How, could

Re: [PHP] __call and recursion

2010-05-09 Thread Peter Lind
On 9 May 2010 23:21, Daniel Kolbo kolb0...@umn.edu wrote: Hello, I've defined a __call() method inside a class.  Within the __call() method (after testing that the method exists and is callable I am using: call_user_func_array(array($this,$method), $args); However, this seems to be an

Re: [PHP] __call and recursion

2010-05-09 Thread Nathan Nobbe
On Sun, May 9, 2010 at 3:25 PM, Peter Lind peter.e.l...@gmail.com wrote: On 9 May 2010 23:21, Daniel Kolbo kolb0...@umn.edu wrote: Hello, I've defined a __call() method inside a class. Within the __call() method (after testing that the method exists and is callable I am using:

Re: [PHP] __call and recursion

2010-05-09 Thread Peter Lind
On 9 May 2010 23:56, Nathan Nobbe quickshif...@gmail.com wrote: On Sun, May 9, 2010 at 3:25 PM, Peter Lind peter.e.l...@gmail.com wrote: On 9 May 2010 23:21, Daniel Kolbo kolb0...@umn.edu wrote: Hello, I've defined a __call() method inside a class.  Within the __call() method (after

Re: [PHP] PHP Encoder like IonCube

2010-05-09 Thread donald sullivan
bcompiler is available, but with the correct tools data can still be extracted. http://php.net/manual/en/book.bcompiler.php On May 9, 2010, at 4:36 PM, shiplu wrote: Is there any php encoder like IonCube ? Looking for an opensource solution. My main target is to deliver encoded php codes so