Re: [PHP] Advanced maths help (for GD image functionality)
it's algebra at work :) nicely done. On Oct 15, 2004, at 8:57 AM, Gryffyn, Trevor wrote: Good questions.. Here's some stuff to play with: Heres my maths problems in 2 parts: Problem 1) I need to scale down an image (eg: example.jpg) to height of 120 pixels while maintaining the images proportions. eg: if i have an image of (height and width) 800x600 what would the dimensions be if the height was 120? Proportions can be figured out by doing cross multiplication. Say you're trying to figure out percentages, do something like this: x 75 -x --- 100 185 Multiple cross ways and you get: 185x = 7500 Divide both sides by 185 to get just an "x = " and you get 40.54. 75 is 40.54% of 185. You can use this to get your proportions for images too. It doesn't have to be 100 at the bottom of that one side. Say you have an image that's 1275 x 852 and you want to create a 120 x Thumbnail. 1275 w 120 w -- x --- 852 h x h 1275x = 102240 (1275 times x = 120 times 852) Divide both sides by 1275 and you get: X = 80.19 Which you might round to 80. So a 1275 x 852 image scale down to 120 x 80. Easy, right? :) Problem 2) After getting the above image now I need the x and y parameters to cut a h120 x w90 thumb *from the center of the image* eg: if from problem 1 the result is an image of 120 x 160 then x=35 and y=125 (I think, i told you i suck at maths.. :-D ) This one's even easier. Using the same 1275 x 852 image: 1275 w - 120 w = 1155 (difference in widths) 1155 / 2 = 577.5 (578 rounded let's say). That's how much space you'll have on either wide width-wise. That'll give you a 120w "center cut" Do the same with the height: 852 - 90 = 762 762 / 2 = 381 So your top-left pixel to start cutting would be at 578 x 381. Try it out and let us know how it worked. -TG -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP on Windows
Hi, you might also wanna give the identity/username php is running under and give it ntfs write permission to the directory. It should be on the Properties of the directory and Security Tab. Regards, Jonel On 10/20/04 12:02 PM, "Greg Donald" <[EMAIL PROTECTED]> wrote: > On Wed, 20 Oct 2004 12:59:40 -0400, Jonathan Haddad > <[EMAIL PROTECTED]> wrote: >> So I'm setting up a website that needs to run on a windows server. >> There are file uploads. What do I need to do to make the directory >> writable? I'm sure it's very obvious but when the time comes to do it >> it has to happen immediately. > > Right-click on the folder icon, and uncheck the read-only box. > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Mac OS X and Editor
Hi guys, I just like to ask those using Macs here as to what editor and/or IDE they are using for writing PHP codes. Thanks and regards to all. Jonel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Classes and Interface tool
hi again guys, is there a tool that can allow you view the available interfaces of a class, like an object/class browser that can help you view the signatures of those interfaces? thanks and regards, Jonel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] php.ini Path at Runtime
There was a very recent discussion about this, look up the archive from the past week or 2. regards, Jonel > Does anyone know whether there is a way to specify the path of php.ini > within httpd.conf or something similar? There is an environment > variabled named PHPRC that is almost useful enough, but it must exist > within the environment used to start Apache (e.g., using SetEnv in > httpd.conf won't work - the description of putenv() sounds much the > same). > > I am basically looking for an elegant method of specifying the path to > the php.ini to use when starting Apache, much like how I can specify the > path to httpd.conf with the -f flag: > > /usr/local/apache/bin/httpd -f /path/to/httpd.conf > > Thanks. > > Chris > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP in CGI ....php.in
Hi, where did you place your php.ini? regards, Jonel -- I not know English well, but I know 7 computer languages. On Oct 30, 2004, at 2:48 AM, Christian Ista wrote: #!/usr/bin/php -c /path/to/php.ini I tried this #!/usr/local/lib/php -c php.ini In the php.ini : register_globals = on but that's not work Any idea ? Christian, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] php.ini Path at Startup
I misread your question, thought you were referring to the same discussion about the php as cgi :-) regards, Jonel -- I not know English well, but I know 7 computer languages. On Oct 30, 2004, at 4:05 PM, Chris Shiflett wrote: --- Jonel Rienton <[EMAIL PROTECTED]> wrote: There was a very recent discussion about this, look up the archive from the past week or 2. If you're referring to the responses to this question: http://marc.theaimsgroup.com/?l=php-general&m=109907804615206&w=2 then it's a different issue. If you're not, maybe you can elaborate. I've been active on this list for years, and I don't recall seeing the answer to this question. :-) I'm thinking it's because there isn't a way, and if this is the case, I want to add it (or convince someone smarter than me to add it). Just to clarify the question, I want to be able to start Apache and specify which php.ini I want PHP to use, much like how I can with httpd.conf: /usr/local/apache/bin/httpd -f /path/to/httpd.conf Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] str_pad with
Hi guys, i was trying to do an str_pad with (space) but somehow it's just putting in one space and &nbs sample code: anybody else experienced this? thanks and regards, jonel -- I not know English well, but I know 7 computer languages. -anonymous -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP in CGI ....php.in
have you tried #!/usr/local/lib/php -c /home/mydomaine/www -- I not know English well, but I know 7 computer languages. On Oct 31, 2004, at 2:32 AM, Christian Ista wrote: where did you place your php.ini? In the root of my application in www. /home/mydomaine/www Thanks, Christian, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Object oriented??
From a theoretical stand point, for a language to be OO, it should support encapsulation, inheritance and polymorphism On Nov 7, 2004, at 2:26 AM, Robert Cummings wrote: On Sun, 2004-11-07 at 01:37, Larry E.Ullman wrote: Yes of course...but was confused since some says it is so and some says it is not...So thought of asking the pros.. It is. PHP4 had limited support for OOP, though it was quite usable. PHP5 goes further and provides pretty much everything else. See the documentation on php.net for the complete language reference. I guess this is where the OP's confusion stemmed from (Robert said Yes, I said No)! A liberal definition of OO is "An adjective applied to any system or language that supports the use of objects", under which PHP would qualify. But, in strict OO languages, everything must be done using objects. You can't even do a simple "Hello, World" without them (I could be wrong on this, of course). With that understanding PHP would not be OO. So, in short, PHP __supports__ objects but does not __require__ them. For a language to be object oriented it does not need to be purist like java. But then in counter to your argument, java primitive datatypes such as int or bool are not themselves objects, which is in contrast to the design of Smalltalk. At any rate, few would argue that C++ is not OO and yet you can write a C++ program without using any objects. I think it is sufficient to say that a language is OO if it supports the OO paradigm, not if it enforces it. Cheers, Rob. -- .. | InterJinn Application Framework - http://www.interjinn.com | :: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Auto Form Fill on option select
This can be done with javascript or you can use an event-driven solution like PRADO > Hi all, > I have a question that I can't get my head around and was hoping > someone > could answer for me. > > I have a form with a number of fields. > > Field one is a > The option fields are built from an sql statement and a where clause > builds the options fields > ... > $teamname; > ?> > > etc... > > When I select one of the options, the form automatically goes off and > does another sql select a with the WHERE value of the selected > $teamname, and then populates the next field, but I can't think how. > > Any pointers? > > TIA > K -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Auto-load class if it doesn't exists!
Hi, you would need something like a singleton class if my memory serves me. cheers, jonel -- I not know English well, but I know 7 computer languages. anonymous On Nov 16, 2004, at 11:36 AM, Bruno B B Magalhães wrote: Hi people, is it possible to have a solution that works like an autoloader... for example: $myclass = new class(); but if this class wasn't loaded yet, it loads by itself... egg: if(class_exists(class)) { $myclass = new class(); } else { require_once(PATH_DIR.'class.class.php'); $myclass = new class(); } Regards, Bruno B B Magalhaes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Problem typing in PHP forms on Mac OS
do you have the actual link of this page, i can test it for you. -- I not know English well, but I know 7 computer languages. anonymous On Nov 16, 2004, at 2:24 PM, Jeff - Webmaster wrote: Hello all. I have created a few PHP pages on our website where users can go a fill out a simple form and submit it to our support department using the post method. For users on PC's, this works flawlessly. I am getting complaints from people who use Macintosh who say that they are not able to type in certain fields. The fields in question are text boxes. There is not anything special about the code (snippet at the end of this email). They are hitting the issue using Safari, Netscape, or IE and with varying versions of each. Has anyone out there run into this before? Thanks Jeff #condensed# Billing Address #condensed# I agree to the conditions above I do not agree with the conditions above -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Re: [PHP-DB] OOP vs Functions and includes]
Original Message Subject: Re: [PHP-DB] OOP vs Functions and includes From: "Jonel Rienton" <[EMAIL PROTECTED]> Date: Tue, November 16, 2004 7:04 pm To: <[EMAIL PROTECTED]> Hi again Pablo, not sure how the inner workings of PHP are as far as instantiating new classes. other languages i've used only (jit-)compile methods/member functions as they are called thus reducing the amount of memory in instantiating objects. regards, Jonel > Thanks for your response Jonel. > I mistakenly posted this in the PHP-DB list, I wanted to do it in the > General list instead. > Anyway, I heard those words you mention in several OOP introduction > sites but I guess never understood it. > I'll try to re-read that focsing in them. > > One question tho, I saw classes use functions within them... dont they > require more "memory" on the server side ? > Thanks ! > > Pablo. > > > > On Tue, 16 Nov 2004 18:40:51 -0600 (CST), Jonel Rienton > <[EMAIL PROTECTED]> wrote: > >> Hi Pablo, >> >> The 3 main strong points of using OOP are: >> >> 1. Encapsulation >> 2. Inheritance >> 3. Polymorphism >> >> I like using OOP instead of includes because of these points. It >> helps me >> alot in doing maintenance releases using this technique instead of >> having to deal with thousands of codes which can be abstracted from >> me with encapsulation for instance. >> >> regards, >> Jonel >> >>> Hi, This is my first post. English is my 2nd language so I apologize >>> for >>> any mistakes I might have. >>> >>> I would describe myself as an intermediate self-thaught PHP >>> programmer, >>> which means I can do lots of stuff but probly my coding techniques >>> sucks :P >>> >>> Anyway, Im reading a lot about OOP lately, and I've fixing other's >>> people scripts which use OOP for "small" stuff that could have >>> been acomplished with simple functions or includes maybe... so I >>> started wondering, why use OOP when you can use something >>> simpler... >>> >>> Imagine the following example: >>> A table of MySQL on a simple classifieds site holds the info for >>> each Ad >>> posted ( timestamp, user who posted it, title, description, >>> location, >>> country, etc). >>> A php page called ads.php gets the ad ID via $_GET and prints out >>> its information in a nicely formated page. >>> >>> What I usually do is to put all the "echo-ing" part of this page in >>> a separate include (ie: ads_details.php ), so that if I need to also >>> show >>> this in another page, I call the same include. If I decide to do a >>> change later, I only have to change it in one part of the script >>> alone. >>> >>> What I've seen a lot lately is that people do the same with classes >>> (they write a class that will output the same thing I output thru >>> an include)... so I guess there must be pros and cons regarding >>> using both methods... >>> >>> Could anyone point me to a good reading (free, internet) material to >>> read about this or any other advice so I continue learning about >>> OOP and when to use it ? >>> >>> If you read it all the way down here THANKS ! :D >>> >>> Pablo Fernandez-Stearns >>> BA. Argentina. >>> >>> -- >>> PHP Database Mailing List (http://www.php.net/) >>> To unsubscribe, visit: http://www.php.net/unsub.php >> >> > > > > -- > Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ -- -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Problem typing in PHP forms on Mac OS
It works flawlessly on my mac os panther 10.3.6, i wonder what build of mac os they are using. I can type in on all the textfields. -- I not know English well, but I know 7 computer languages. anonymous On Nov 16, 2004, at 2:24 PM, Jeff - Webmaster wrote: Hello all. I have created a few PHP pages on our website where users can go a fill out a simple form and submit it to our support department using the post method. For users on PC's, this works flawlessly. I am getting complaints from people who use Macintosh who say that they are not able to type in certain fields. The fields in question are text boxes. There is not anything special about the code (snippet at the end of this email). They are hitting the issue using Safari, Netscape, or IE and with varying versions of each. Has anyone out there run into this before? Thanks Jeff #condensed# Billing Address #condensed# I agree to the conditions above I do not agree with the conditions above -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] solaris 10 and php5
Hi, i was trying to build php5 in a solaris 10 i386 box and I got stuck with the following error message: In file included from /usr/include/sys/wait.h:24, from /export/home/jonel/Downloads/php-5.0.2/ext/standard/exec.c:33: /usr/include/sys/siginfo.h:259: error: parse error before "ctid_t" /usr/include/sys/siginfo.h:292: error: parse error before '}' token /usr/include/sys/siginfo.h:294: error: parse error before '}' token /usr/include/sys/siginfo.h:390: error: parse error before "ctid_t" /usr/include/sys/siginfo.h:392: error: conflicting types for `__proc' /usr/include/sys/siginfo.h:261: error: previous declaration of `__proc' /usr/include/sys/siginfo.h:398: error: conflicting types for `__fault' /usr/include/sys/siginfo.h:267: error: previous declaration of `__fault' /usr/include/sys/siginfo.h:404: error: conflicting types for `__file' /usr/include/sys/siginfo.h:273: error: previous declaration of `__file' /usr/include/sys/siginfo.h:420: error: conflicting types for `__prof' /usr/include/sys/siginfo.h:287: error: previous declaration of `__prof' /usr/include/sys/siginfo.h:424: error: conflicting types for `__rctl' /usr/include/sys/siginfo.h:291: error: previous declaration of `__rctl' /usr/include/sys/siginfo.h:426: error: parse error before '}' token /usr/include/sys/siginfo.h:428: error: parse error before '}' token /usr/include/sys/siginfo.h:432: error: parse error before "k_siginfo_t" /usr/include/sys/siginfo.h:437: error: parse error before '}' token In file included from /usr/include/sys/procset.h:24, from /usr/include/sys/wait.h:25, from /export/home/jonel/Downloads/php-5.0.2/ext/standard/exec.c:33: /usr/include/sys/signal.h:85: error: parse error before "siginfo_t" In file included from /export/home/jonel/Downloads/php-5.0.2/ext/standard/exec.c:33: /usr/include/sys/wait.h:86: error: parse error before "siginfo_t" In file included from /export/home/jonel/Downloads/php-5.0.2/ext/standard/exec.c:36: /usr/include/signal.h:111: error: parse error before "siginfo_t" /usr/include/signal.h:113: error: parse error before "siginfo_t" make: *** [ext/standard/exec.lo] Error 1 I have installed the necessary packages from sunfreeware as required and google it and I seem to hit a wall. anyone have successfully build php5 in a solaris 10? thanks and regards, Jonel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Not quite PHP, but related...
could header("Location: urlhere") be an alternative? jonel http://www.road14.com http://www.filipinosrus.com -- I not know English well, but I know 7 computer languages. anonymous On Dec 10, 2004, at 4:16 PM, Bruno B B Magalhães wrote: Hi you all, is that possible using .htaccess to redirect every request to a specified script? for example if you have: http://www.yoursite.com/en/articles/blab.html where there isn't a en dir., so it would be redirected to public_html/site I could use error page, but it won't receive post, get, cookie and session headers. Regards, Bruno B B Magalhaes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Database Framework
Hi guys, Is there an on-going initiative as far as creating a PHP framework somewhat the same as .Net's framework implementation? Like for instance, the System.Data namespace where PHP developer can just create something like a DataAdapter which can connect to a datastore and fill a DataSet object? I think that would make our life a little easier? This post is by not any means a way to start a flame war or something, I just thought about it and I think it makes sense. regards, http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Database Framework
that had been my intensions, just wanna make sure i'm not reinventing the wheel :) regards, http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous On Dec 16, 2004, at 7:29 AM, Jay Blanchard wrote: [snip] Is there an on-going initiative as far as creating a PHP framework somewhat the same as .Net's framework implementation? Like for instance, the System.Data namespace where PHP developer can just create something like a DataAdapter which can connect to a datastore and fill a DataSet object? I think that would make our life a little easier? This post is by not any means a way to start a flame war or something, I just thought about it and I think it makes sense. [/snip] If you think so, write it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Using SSL
Consulting the Apache documentation is better, seems like you just missed configuring the conf file of Apache. Have you created the certificate for your domain? SSL will not be loaded unless you configure it in the conf file(httpd.conf/apache2.conf) regards, http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous On Jan 2, 2005, at 11:41 PM, Daniel Lahey wrote: I've posted about this before, and I guess I'm just thick, but I'm just not getting it. I need to implement secure transactions for a client, but I just can't figure out how to open a page with an https prefix. The server has mod-ssl and OpenSSL compiled into it: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.3.9 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b Here's the PHP config: './configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-xml' '--enable-bcmath' '--enable-calendar' '--with-curl' '--with-dom' '--with-dom-xslt' '--with-dom-exslt' '--enable-exif' '--enable-ftp' '--with-gd' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr' '--with-xpm-dir=/usr/X11R6' '--with-gettext' '--with-imap' '--with-imap-ssl' '--with-kerberos' '--enable-mbstring' '--enable-mbstr-enc-trans' '--enable-mbregex' '--with-mcrypt' '--with-mhash' '--with-ming=../ming-0.2a' '--enable-magic-quotes' '--with-mysql' '--with-openssl' '--enable-discard-path' '--with-pear' '--with-pspell' '--enable-sockets' '--enable-track-vars' '--with-ttf' '--with-freetype-dir=/usr' '--enable-gd-native-ttf' '--enable-versioning' '--enable-wddx' '--with-xmlrpc' '--with-zlib' I'm unable to open any pages with an https prefix, .html or .php. I get the message: The requested URL /index.html was not found on this server. (or whatever page I try to open other than index.html) This is in Firefox. If I try it locally, I get "Connection refused when attempting to contact localhost". This is in Firefox. If I try to open a page on the server in Safari, I get redirected to http://www.netidentity.com/ Huh? If I try it locally in Safari, I get 'Safari can't connect to the server. Safari can't open the page "https://localhost/ because it cannot connect to the server "localhost".' (I get the standard Apache default page as http://localhost/). From everything I've read and been told, all that should be necessary is to compile ssl into the server and PHP and add the https prefix. Aargh. Should I be consulting an Apache mail list? Try to get a gig bagging groceries? Any advice as to where to find information about using SSL would be HUGELY appreciated. TIA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] 403 not working -- apache 2 / php5 / linux
man chmod, i gather you're new to linux/*nix http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous On Jan 10, 2005, at 12:49 PM, Jason Morehouse wrote: Hello. I'm not sure if this is an apache problem or php... but wondering if anyone has come across the same problem. -rw---1 root root test.html -rw---1 root root test.php Trying to access test.html via a browser servers up the apache 403 error page. The test.php however produces: Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0 Warning: Unknown: Failed opening '/www/test.php' for inclusion (include_path='.:/www/php') in Unknown on line 0 Any ideas? Thanks! -- Jason Morehouse Vendorama - Create your own online store http://www.vendorama.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] SQL Server log file
just to help out, you might wanna try and use the Profiler under the MS SQL programs group http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous On Jan 12, 2005, at 7:54 AM, Zouari Fourat wrote: Hello am new to ms sql server and using it for a while, i where searching where to find sql queries log file ? some one have an idea about it ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] PHP application for knowledge management?
Hi murray, I have used phpBB2, i know, it's a forum application but it does the job of storing information about my projects, the search is pretty cool, it works out of the box for me, maybe it will help you too. http://jonel.road14.com -- I not know English well, but I know 7 computer languages. anonymous On Jan 17, 2005, at 5:08 PM, Murray @ PlanetThoughtful wrote: Hi All, Just wondering if anyone can recommend an open php source application suitable for knowledge management for a small development team? We have 3 coders with different responsibilities, but often have to cover each other if unexpected things happen. We're hoping to implement a knowledge management tool of some sort in which we can store business logic, code snippets, back-end table / stored procedure descriptions and so forth. We're hoping to find something that allows us to extensively categorize / keyword entries, in which content is easy to maintain, expand etc, and which has extensive search capabilities. Our ultimate (if perhaps unlikely) goal is to be able to place a new coder into our environment with a tool that enables him or her to get up to speed with our environment in the shortest time possible. Any suggestions / pointers welcome! Much warmth, planetthoughtful -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] .Net Web services
any more details? On Tue, 18 Jan 2005 11:06:16 +1000, Michael Leung wrote > Hi all, >I have a parameter passing problem by using PHP SOAP extension. > .Net web services seem not to be read the parameters. > > yours, > Michael > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Jonel Rienton http://jonel.road14.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php