php-general Digest 9 Jul 2007 07:49:19 -0000 Issue 4893

Topics (messages 258477 through 258481):

Re: Anyone recommend a great phpmysql knowledge base?
        258477 by: Al

triming utf8 (?) a string
        258478 by: Rick Pasotto
        258479 by: Jim Lucas

Re: Calendar booking form in PHP/MySQL
        258480 by: Zareef Ahmed

A very strange loop!
        258481 by: Xell Zhang

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------
--- Begin Message ---
Search  http://sourceforge.net/softwaremap/index.php There are dozens.

Graham Anderson wrote:
Does anyone have a positive experience with an 'out of the box' Knowledge Base system (hopefully open-source) that easily allows developers to easily share/post/publish/document their code?

I know this question is a a bit general, but I figure a lot of you guys are on such a system at work. Hopefully, there are some good/flexible solutions out there that will prevent me from reinventing the wheel.

Many thanks in advance :)

--- End Message ---
--- Begin Message ---
I'm using the PEAR Crypt_Blowfish module. When I decrypt the encrypted
string the result is the original plus some '\ufffd' bytes. How can I
get rid of those extra bytes? I've tried both trim($x,'\ufffd') and
trim($x,utf8_decode('\ufffd')).

-- 
"Economics is extremely useful as a form of employment for economists."
                -- John Kenneth Galbraith
    Rick Pasotto    [EMAIL PROTECTED]    http://www.niof.net

--- End Message ---
--- Begin Message ---
Rick Pasotto wrote:
I'm using the PEAR Crypt_Blowfish module. When I decrypt the encrypted
string the result is the original plus some '\ufffd' bytes. How can I
get rid of those extra bytes? I've tried both trim($x,'\ufffd') and
trim($x,utf8_decode('\ufffd')).

trim() is meant to remove chars from the beginning and ending of a string.

http://us2.php.net/str_replace is meant to remove a set of chars from a string. Anywhere within the string.


--
Jim Lucas

   "Some men are born to greatness, some achieve greatness,
       and some have greatness thrust upon them."

Twelfth Night, Act II, Scene V
    by William Shakespeare

--- End Message ---
--- Begin Message ---
Hi Murphy,
I think till now you got the idea why you did't got replies for query.
Please do a simple google search and you will find something. using
sourceforge is also good idea.

People are here to solve and discuss the programming problems of each
others, NOT to do work for each other  :)

Zareef Ahmed

On 7/3/07, Timothy Murphy <[EMAIL PROTECTED]> wrote:

I'm looking for a PHP/MySQL "calendar booking form",
which I am sure must have been done a million times.

This will show a calendar on the web mirroring a MySQL table.
Each entry in the MySQL table will show two dates, Start and End.
The dates between these should be shown in red on the calendar.

Any pointers or scipts or suggestions gratefully received.

--
Timothy Murphy
e-mail (<80k only): tim /at/ birdsnest.maths.tcd.ie
tel: +353-86-2336090, +353-1-2842366
s-mail: School of Mathematics, Trinity College, Dublin 2, Ireland

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
Thanks and Regards
Zareef Ahmed
===============================
PHP Developer India http://www.zareef.net

--- End Message ---
--- Begin Message ---
Hello all,
I met a very strange problem today. Take a look at the codes below:
for ($i = 'A'; $i < 'Z'; $i++) {
echo $i . ' ';
}

If you think the output is A-Z, please run it on your server and try.
Who can tell me why the result is not A-Z?


--
Zhang Xiao

Junior engineer, Web development

Ethos Tech.
http://www.ethos.com.cn

--- End Message ---

Reply via email to