RE: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 9:04 am, Jay Blanchard wrote: [snip] This might be slightly OT but it is related to a PHP project. I have a link on the site Im developing to bookmark the site. The title is XYZ company(tm) but when the add bookmark window comes up for saving the bookmark, I cannot

Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 10:13 am, Satyam wrote: The problem usually is that many of the 'things' surrounding the main window of the browser do not understand HTML and its special characters. The favorites or history lists are often one of them. Most have solved the rendering of the title

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread paul
At 01:36 PM 4/26/2006, Warren Vail wrote: PHP appears to me to be incomplete unless it can provide a way to provide client (browser) side executables in a consistent language, namely PHP. Developers get all excited about the elegence of the PHP language, and somewhere along the way they discover

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 11:07 am, Martin Alterisio wrote: You should be able to do this in two calls to the mysql_query() function. mysql_query(SET @var1=3); mysql_query(SELECT * from table1 Where [EMAIL PROTECTED]); -bash-2.05b$ php -a Interactive mode enabled ?php mysql_connect('localhost',

Re: [PHP] Pear Package HTTP_Request

2006-04-26 Thread Richard Lynch
Try to get Net_Sockeet 1.0.2 installed -- maybe something appeared in 1.0.2 and went away again :-( Or, more likely, the dependencies logic/test is just plain flawed. On Wed, April 26, 2006 5:59 am, Markus Braun wrote: Hello, i try to install the HTTP_Request package. I installed also the

RE: [PHP] php_gd2.dll not found

2006-04-26 Thread Ari Davidow
No. No mix-n-match: This was a clean install. The old php folder was renamed, then the new one put into place. I downloaded the files again, from a different mirror, and tried again. Most files are dated 1/11/2006, as was previously the case. I have noted from the archives that a few other people

RE: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Warren Vail
You are absolutely correct, that anything that ran on the client machine would have to be safe and not venture outside the sandbox, but that is not what I had in mind, and I don't think that was the goal of PUB? Who began this thread. I believe he wanted to manage some responses to mouseover, and

Re: [PHP] bookmarking with a trademark sign in title

2006-04-26 Thread Satyam
- Original Message - From: Richard Lynch [EMAIL PROTECTED] To: Satyam [EMAIL PROTECTED] Cc: chris smith [EMAIL PROTECTED]; Angelo Zanetti [EMAIL PROTECTED]; PHP List php-general@lists.php.net Sent: Wednesday, April 26, 2006 11:33 PM Subject: Re: [PHP] bookmarking with a trademark

[PHP] How does PECL and PEAR handle versioning of PHP core?

2006-04-26 Thread D. Dante Lorenso
All, If I install PHP 5 and want to use a PECL extension, does that work the same as if I install PHP 4 and try to use the same extension? One extension that I use a lot is 'memcache' from PECL: http://pecl.php.net/package/memcache When I view this site, I do not see any reference to the

RE: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Warren Vail
Sounds like you may be a young dude ;-) You know what they say about us old dogs and new tricks. PHP was a wonderful new trick for me, but javascript still stretches me a bit much, and if it weren't for the similarities you mention, I'd be completely lost. I think the reason we keep getting

Re: [PHP] Book/Site for internernal PHP5 Core Developing

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 4:54 am, Thomas Munz wrote: Does someone know a good Book/website for Develop own C-Extensions for PHP5? http://us2.php.net/manual/en/zend.php This site are just basic things, but i wanna do more things. Someone may help me? There's a nice article Zend.com by

[PHP] I want to write a Multi-threaded PHP Application

2006-04-26 Thread D. Dante Lorenso
All, For years I have wanted to have the ability to create a new Thread in PHP similar to how it is done in the Java language. I understand the complexities this would involve and have mentioned the idea to the PHP internals list once and subsequently had the idea shot down and declared not

[PHP] Re: How does PECL and PEAR handle versioning of PHP core?

2006-04-26 Thread Greg Beaver
D. Dante Lorenso wrote: All, If I install PHP 5 and want to use a PECL extension, does that work the same as if I install PHP 4 and try to use the same extension? One extension that I use a lot is 'memcache' from PECL: http://pecl.php.net/package/memcache When I view this site, I

Re: [PHP] error message

2006-04-26 Thread Richard Lynch
Re-boot. On Wed, April 26, 2006 4:27 pm, cybermalandro cybermalandro wrote: Yes, Yes and Yes although I am not running apache I am running IIS. On 4/26/06, Richard Lynch [EMAIL PROTECTED] wrote: On Wed, April 26, 2006 4:08 pm, cybermalandro cybermalandro wrote: I have set in

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 4:45 am, Kevin Davies wrote: I've got a forum/blog system which is displaying correctly in the browser. However, I've also got an RSS feed that is created from the data entered. It seems that some of the users are copying and pasting from MS Word or other packages,

RE: [PHP] I want to write a Multi-threaded PHP Application

2006-04-26 Thread Warren Vail
I did one (well sort of) once. I created a php script which was started by cron every minute. It read a mysql table looking for items to process, and on finding one, would stamp the entry in the table as being processed and it would then proceed with what it needed to do, which sometimes took

Re: [PHP] session

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 2:53 am, Sichta, Daniel wrote: I have web app which using frames. After session timeout my session is killed. The problem is that session is killed even when I doing requests to the server. I know why (session is chain to the frameset page) but what's the solution for

RE: [PHP] I want to write a Multi-threaded PHP Application

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 6:05 pm, Warren Vail wrote: not likely until at least PHP 8.0. However, my needs for a thread are very simple and might be able to avoid the complexities of shared One thing you could consider... If you had one main script that did a stream_select on multiple URLs and

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread D. Dante Lorenso
Richard Lynch wrote: On Wed, April 26, 2006 4:45 am, Kevin Davies wrote: Obviously I need to convert these on entry, or on output into RSS. Does anyone know of an easy way to do this, or is it a case of identifying each unusual character individually? You don't necessarily need to fix

Re: [PHP] Natural order of things.

2006-04-26 Thread tedd
On Wed, 2006-04-26 at 16:57, Robert Cummings wrote: On Wed, 2006-04-26 at 16:51, tedd wrote: Hi gang: I posted the following question to the MySQL list, but the only answer I received thus far was a php solution (it didn't work for what I wanted). As such, maybe if I post a MySQL

Re: [PHP] error message

2006-04-26 Thread chris smith
On 4/27/06, cybermalandro cybermalandro [EMAIL PROTECTED] wrote: I have set in display_errors = off on my php.ini but I can still see ODBC related error messages when I try to duplicate an ODBC error. Am I missing something to turn this off? Can you produce a small test case? Maybe post a bug

Re: [PHP] Natural order of things.

2006-04-26 Thread Robert Cummings
On Wed, 2006-04-26 at 21:15, tedd wrote: On Wed, 2006-04-26 at 16:57, Robert Cummings wrote: On Wed, 2006-04-26 at 16:51, tedd wrote: Hi gang: I posted the following question to the MySQL list, but the only answer I received thus far was a php solution (it didn't work for

Re: [PHP] error message

2006-04-26 Thread Jason Barnett
Let's not open an error report just yet... there are already too many bugs in the database! A snippet of the relevant code would be nice though. Perhaps your odbc_errormsg($conn) is being echo'd to stdout? Or you are using those fun Exception beasts? On 4/26/06, chris smith [EMAIL PROTECTED]

[PHP] PHP 4.3.11, call_user_func and instances of classes

2006-04-26 Thread David Otton
A bit of an oddity, this. There's some example code attached which illustrates my problem. I am attempting to call a method of an instance of an class from outside that instance, using call_user_func(). What's happening is that my attempt to call array ($this, 'AddOne') is silently being

Re: [PHP] PHP 4.3.11, call_user_func and instances of classes

2006-04-26 Thread Martin Alterisio
The problem is not what it seems. PHP4 assigns object by copy, not by reference. This is causing the call_user_func() to use a copy of the object instead of the original object. So, all modifications are lost once the call is done. One solution to this is to assign objects by reference: $addition

[PHP] Files and permission

2006-04-26 Thread Peter Lauri
Best group member, I am creating a file system class. I will have a web based document center with different access roles. All users in the system will not be able to view the files. It will all be run thru the web tool. I will have a class that is called file. That file can give an

Re: [PHP] Files and permission

2006-04-26 Thread Robert Cummings
On Thu, 2006-04-27 at 00:18, Peter Lauri wrote: Best group member, I am creating a file system class. I will have a web based document center with different access roles. All users in the system will not be able to view the files. It will all be run thru the web tool. I will

<    1   2