php-general Digest 21 May 2005 12:53:41 -0000 Issue 3467

2005-05-21 Thread php-general-digest-help
php-general Digest 21 May 2005 12:53:41 - Issue 3467 Topics (messages 215685 through 215695): Re: multiple queries, one transaction 215685 by: Richard Lynch Re: Code to bypass a certain php.ini directive 215686 by: Richard Lynch 215690 by: M Saleh EG Re: Getting

php-general Digest 22 May 2005 01:26:23 -0000 Issue 3468

2005-05-21 Thread php-general-digest-help
php-general Digest 22 May 2005 01:26:23 - Issue 3468 Topics (messages 215696 through 215709): Re: Image Verification - Problems in Safari, Mac OS X 215696 by: Ryan A 215698 by: Marek Kilimajer SMarty and commercial php (a little 0t)

Re: [PHP] update blues

2005-05-21 Thread Marek Kilimajer
Jim Sara Feldman wrote: Hi: I have a partially finished app using PHP and MySQL that runs on Mac G4 running System 10.3.9. Undoubtedly, I upgraded too many things all at the same time. Something broke. PHP and MySQL are both running. I can use the latest phpMyADMIN and everything is there

Re: [PHP] update blues

2005-05-21 Thread Brian V Bonini
On Fri, 2005-05-20 at 23:54, Jim Sara Feldman wrote: Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /Library/WebServer/Documents/testit/Logsafe_project/db_fns.php:212) in /Library/WebServer/Documents/testit/Logsafe_project/member.php on

Re: [PHP] Image Verification - Problems in Safari, Mac OS X

2005-05-21 Thread Ryan A
Hey, used to have the same problem, solved it by having a random string in the img calling part. eg: first have a function to generate a modest random string (I use 8 chars) then in the image calling part call it something like this: img src='?php echo $your_image_gets_called_here; ???php

[PHP] SMarty and commercial php (a little 0t)

2005-05-21 Thread Ryan A
Hey, This may belong more on the smarty list, but I thought i'll ask it here because in another way I need your opinion more than smarty advise. Like a lot of people on this list, I use a templating system (Smarty and another... mostly Smarty) when I am working on a project for a client...

Re: [PHP] Image Verification - Problems in Safari, Mac OS X

2005-05-21 Thread Marek Kilimajer
Richard Lynch wrote: On Thu, May 19, 2005 6:05 am, Rahul S. Johari said: I did actually remove the Header which declared it as a Image/PNG and everything seemed to work in both the browsers. Great. Now it works in 2 browsers, and breaks in 237. You MUST separate the two. Actualy he

Re: [PHP] SMarty and commercial php (a little 0t)

2005-05-21 Thread Rory Browne
I was wondering if its a good idea to template via smarty and include smarty with my code? also instructions to setup smarty when setting up the application i made? Good idea compared to what? Compared to a different templating library, compared to writing your own templating library, or

Re: [PHP] SMarty and commercial php (a little 0t)

2005-05-21 Thread Ryan A
Hey, I was wondering if its a good idea to template via smarty and include smarty with my code? also instructions to setup smarty when setting up the application i made? Good idea compared to what? Compared to a different templating library, compared to writing your own templating

[PHP] SWF duration time

2005-05-21 Thread Ahmed Abdel-Aliem
hi, i have a question, is there a function to detect SWF files play duration ?? any help would be appreciated thanks, -- Ahmed Abdel-Aliem Web Developer www.ApexScript.com 0101108551 registered Linux user number 382789 -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] ZEND Certification

2005-05-21 Thread Martin Zvarik
Ok, what should I expect from the certification then? Was there any question you didn't expect or anything you didn't know?? If yes, what was it? It seems like not many people took it as I am reading some emails here... like How to get variable after the form is sent etc... I have looked at

RE: [PHP] Re: Strange comparison behaviour

2005-05-21 Thread Martin Zvarik
String info is converted to integer, which is 0... a) if(info == 0) b) if(info === 0) c) if(info == (string)0) Or use strcmp() Cya... Read a book PHP for beginners -Original Message- From: Bogdan Stancescu [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 5:13 AM To:

Re: [PHP] SMarty and commercial php (a little 0t)

2005-05-21 Thread Rory Browne
Yep, left myself quite open there...should have been more specific. I will not write a templating library myself because there are so many out there, it would be a learning experience of course but other than that I think it would be rarely needed. I meant bundling it along with the

Re: [PHP] ZEND Certification

2005-05-21 Thread Rory Browne
On 5/21/05, Martin Zvarik [EMAIL PROTECTED] wrote: Ok, what should I expect from the certification then? Was there any question you didn't expect or anything you didn't know?? If yes, what was it? It seems like not many people took it as I am reading some emails here... like How to get

[PHP] Search problem

2005-05-21 Thread virtualsoftware
Hi, I need to build up a search module for a shop. If I make a basic search (product title for example) it is ok. $query = SELECT product_id FROM products WHERE title LIKE '%$title%'; But i need an advance search for more than one field (title, description, price, weight) The problem is that

Re: [PHP] SWF duration time

2005-05-21 Thread Richard Lynch
On Sat, May 21, 2005 10:18 am, Ahmed Abdel-Aliem said: is there a function to detect SWF files play duration ?? They all play forever. Except the ones that crash my machine. Those last a few minutes, at best. :-) Including the one (not built by me) on my client's site that I have to deal

[PHP] test

2005-05-21 Thread shimuqiheb
?? [EMAIL PROTECTED] Tel:)[EMAIL PROTECTED]

Re: [PHP] SWF duration time

2005-05-21 Thread M Saleh EG
here are the steps for a logical playtime duration of an SWF movie. The length/ duration of the movie is calculated by dividing the number of frames by the frame rate speed. Now that was the main time line... what about the other movies nesting inside the _root and its successors? run a tree

Re: [PHP] Search problem

2005-05-21 Thread Rory Browne
On 5/21/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I need to build up a search module for a shop. If I make a basic search (product title for example) it is ok. $query = SELECT product_id FROM products WHERE title LIKE '%$title%'; But i need an advance search for more than one