Re: [PHP-DB] PHP IDE

2002-02-24 Thread Gerrit P. Haase
Hallo Aron, Am 2002-02-23 um 18:54 schriebst du: I am looking for suggestions out there for a good IDE for PHP development, preferably one that doesn't cost an arm and a leg. I tried PHP4EE studio, but it is buggy as hell and kept crashing on me. If you don't bother to pay for it, try

[PHP-DB] The Debacle

2002-02-24 Thread Jonathan Underfoot
I'm putting together a table with bands, and I have a slight problem. Well it not really a problem as much as I'd like some input from more seasoned professionals. Certain band names begin with The but when listing them it would be of great advantge to me to remove the the. Has anyone else

[PHP-DB] If else trouble

2002-02-24 Thread Jennifer Downey
Hi all, I have worked and re-worked this if else statement. I can't get it to work. It's suppose to work like this. If there are no points in the bank then echo but it always echo's you don't have enough points. It also wont keep me from withdrawing more than I have in the bank. What am I

RE: [PHP-DB] PHP IDE

2002-02-24 Thread Peter Lovatt
Not an IDE as such but a good text editor Homesite has good php syntax colouring, which picks up missing quote marks. Its commercial, but good. http://www.macromedia.com/software/homesite/ HTH Peter --- Excellence in internet and open source

RE: [PHP-DB] The Debacle

2002-02-24 Thread Peter Lovatt
When you add the data //does it begin with 'The '? $name_start = substr($band_name, 0, 2) if ($name_start==The) { //remove the word 'The' and following space from the beginning of the string str_replace('The ', '', $band_name) ; //add ', The 'to the end of the name

RE: [PHP-DB] If else trouble

2002-02-24 Thread Peter Lovatt
Hi -Original Message- From: Jennifer Downey [mailto:[EMAIL PROTECTED]] Sent: 24 February 2002 22:28 To: [EMAIL PROTECTED] Subject: [PHP-DB] If else trouble Hi all, I have worked and re-worked this if else statement. I can't get it to work. It's suppose to work like this.

Re: [PHP-DB] Re: PHP IDE

2002-02-24 Thread Marius Ursache
hi i don't think their is a good IDE for php. they are a few good editors, but i haven't seen a good debugger. any sugestions? (i wan't to debug a code and have access to HTML forms in same time). Neil Thomson a écrit : i use PHP CODER PR2 the newer version of it i think suks. so if u want

[PHP-DB] Shopping Cart ?

2002-02-24 Thread Dave Carrera
Hi All, I am developing a shopping cart for a customer. No Prob there. Is there any info around, or can someone supply, on how to Link the buy button to a ccp. I think what I mean is the customer has no credit card processor at the moment So I want to be flexible with the buy button links (

Re: [PHP-DB] Shopping Cart ?

2002-02-24 Thread Andrey Hristov
Hi There are functions for the Verisign API. For those servers with no compiled module for Verisign try to use the Verisign package from PEAR repository. You can get it from the CVS - cvs.php.net l:cvsread, p:phpfi Look at the docs what command to issue to get the pear package(write pear

[PHP-DB] Problem with symbol

2002-02-24 Thread Marco Coletta
I have a problem with symbol . In PHP script I have a variable with a string assigned containing the symbol '' : $myvariable = 'Smith Sons'; when I insert the variable in the database : $query=insert into mytable (mycolumn) values (myvalue1='$myvariable');; $result=mysql_query($query); if

Re: [PHP-DB] Problem with symbol

2002-02-24 Thread Andrey Hristov
The problem is that you probably use phpMyAdmin for editing data. Regards, Andrey Hristov - Original Message - From: Marco Coletta [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 25, 2002 10:08 AM Subject: [PHP-DB] Problem with symbol I have a problem with symbol .