RE: [PHP] Invoices

2006-03-19 Thread Weber Sites LTD
Check out : http://www.sugarcrm.com/crm/ Sincerely berber Visit the Weber Sites Today, To see where PHP might take you tomorrow. PHP code examples : http://www.weberdev.com PHP & MySQL Forums : http://www.weberforums.com Search for PHP Code from your browser http://toolbar.weberdev.com F

Re: [PHP] array_search function bugged?

2006-03-19 Thread Richard Davey
On 19 Mar 2006, at 22:46, je killen wrote: The code takes a string of ascii letters forming a word and is supposed to create a list of indexes in the proper sequence for reconstructing the word. The object of the code in context is to take Ignoring your code (and the supposed 'bug') for a s

[PHP] array_search function bugged?

2006-03-19 Thread je killen
The following code does not produce the correct results (for my purposes): function code($str, $match, $formula) { for($i = 0; $i < count($str); $i++) { $formula[$i] = array_search($str[$i], $str);// <<==|| no bueno //print $formula[$i]; not right if($formula[$i] < $i) {$str[$i] = '';

[PHP] SNMP problem is TCP

2006-03-19 Thread wood-gd
Hello // I sorry my english //my script is control TCP protocol $ip=83.190.177.45; // IP $community=public; //community (password) echo $stan = '12'; // deletetcb - del connect $LocalAddress = snmpwalk("$ip","$community","tcp.tcpConnTable.tcpConnEntry.tcpConnLocalAddre ss"); $

[PHP] Mail function problems

2006-03-19 Thread Paul Goepfert
Hi all, Has anyone had this problem before? I have a web server that resides on a windows platform (According to phpinfo()). I used the php mail function to send out a test message to make sure that the mail function would work when needed. I sent out the test message and I didn't get an email

Re: [PHP] Invoices

2006-03-19 Thread Kevin Kinsey
Leonard Burton wrote: HI All, What do you all use for keeping track of invoices? I looked at a few open source projects (including http://billing-software.us/) and it seems that there is not really a good Open Source Project out there for invoices. Am I wrong? What would be nice is a project

Re: [PHP] PHP, SQL, AJAX, JS and populating a SelectBox?

2006-03-19 Thread paulm
oh, just realized smth :) the tutorial is not mine i have used with success and also posted there but the credit for the tutorial is of: NickName: Gast Member Since: 03/26/2005 Location: Surrey, England Website:http://www.nmcmahon.co.uk he must have the credit for it :) dave

Re: [PHP] PHP, SQL, AJAX, JS and populating a SelectBox?

2006-03-19 Thread dave
as u wish :) tedd wrote: >> sry bout that it seems i was logged in :) try this on >> "http://www.ajaxfreaks.com/tutorials/6/0.php"; it's called "Making a >> Google Suggest-like application" > > > Dave: > > A most excellent example, but a horrible place to put it. The links are > all screwed up

[PHP] Invoices

2006-03-19 Thread Leonard Burton
HI All, What do you all use for keeping track of invoices? I looked at a few open source projects (including http://billing-software.us/) and it seems that there is not really a good Open Source Project out there for invoices. Am I wrong? What would be nice is a project with a good API that wou

Re: [PHP] Paypal IPN and PHP

2006-03-19 Thread Stan Busk
Hi, You can look at my script. It is available here: http://www.maxprog.com/scripts/paypal_ipn/index.html I made it to sale software licenses, it generates and sends receipts by e-mail to the customers with a copy to you, formats and sends the customer data as XML to you by e-mail, saves the

Re: [PHP] Paypal IPN and PHP

2006-03-19 Thread Richard Davey
On 19 Mar 2006, at 18:32, Leonard Burton wrote: I am putting together an site and will accept payments via Paypal's IPN. I have came across many classes for this so I am curious if anyone has any recommendations? Isn't there a full proper PayPal API now? IPN hasn't changed in ages, but I do

Re: [PHP] showing any mysql query in a table, help!

2006-03-19 Thread Curt Zirzow
On Sun, Mar 19, 2006 at 05:12:06AM +, [EMAIL PROTECTED] wrote: > Ok... > it has to be a way to do such a thing. > I do i get the column names? > I can get the number of columns using mysql_num_fields() right? > but what if i want to get the columns name? Wich functtion and how should i > use?

[PHP] Paypal IPN and PHP

2006-03-19 Thread Leonard Burton
HI All, I am putting together an site and will accept payments via Paypal's IPN. I have came across many classes for this so I am curious if anyone has any recommendations? Does anyone know if the IPN framework has changed since 2003 as it seems that the latest information I have on it is from 2

[PHP] Re: Updating a single line in a file

2006-03-19 Thread Al
For small DBs and where I don't expect very heavy traffic, I simply put everything in an array, where the keys are unique. Arrays are quite easy to work with for your type of application Here is a snip I wrote recently function write_data_file($courses_array){ $file_str

Re: [PHP] PHP, SQL, AJAX, JS and populating a SelectBox?

2006-03-19 Thread tedd
sry bout that it seems i was logged in :) try this on "http://www.ajaxfreaks.com/tutorials/6/0.php"; it's called "Making a Google Suggest-like application" Dave: A most excellent example, but a horrible place to put it. The links are all screwed up and confusing. The pages are not designed we

Re: [PHP] Updating a single line in a file

2006-03-19 Thread smr78
OK, I take a look on sqlite Many thanks ""Manuel Amador (Rudd-O)"" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED] > Replies inlined. > >>>Why dont you use a database for this? You will run into race >>>conditions at some point. >>> >>>If you need a file based database t