Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
Thank you very much Kim, Its really very much useful to me. I was trying to fing the sollution from a long time. At last you had answered me. Thanks Once Again. Regards, Rinku Kim Steinhaug <[EMAIL PROTECTED]> wrote: Or $_GET["action"]; $_GET["Name"]; Do yourself a HUGE favour and start using

Re: [PHP-DB] content managment systems

2004-06-20 Thread Cole S. Ashcraft
I really like Mambo Open Source- mamboserver.com or mosforge.net. They are about (hopefully ;)) going to release version 4.6 real soon. 4.5 is great too, but 4.6 promises to be way better, Cole Kim Steinhaug wrote: I love that site, really the best way to get familiar with the common systems out

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Kim Steinhaug
Or $_GET["action"]; $_GET["Name"]; Do yourself a HUGE favour and start using _GET and _POST right away on all queries. Also look into the well known problems with addslashes with globals on while your at it. On php.net there are good explernations and examples, look into the reslash() and

Re: [PHP-DB] content managment systems

2004-06-20 Thread Kim Steinhaug
I love that site, really the best way to get familiar with the common systems out there. -- -- Kim Steinhaug -- There are 10 types of people when it comes to binary numbers: those who understand them, and those who don't.

[PHP-DB] Re: mysql and indexes

2004-06-20 Thread Kim Steinhaug
use the EXPLAIN infront of your select query to see what indexes are in use. If you have a double index it wont hurt you, except that you are wasting twice as much space in your DB. This would also make your DB slower since the database needs to index both indexes all the time. Duplicate indexes s

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Kris Geens
Maybe this might work -- -- - Original Message - From: "Rinku" <[EMAIL PROTECTED]> To: "Marvin Hechanova" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, June 20, 2004 2:18 PM Subject: Re: [PHP-DB] value error in PHP form > Actually I want

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
Actually I want to use the function like if($action="Login") { Statements; } But here I am not getting any value in $action even I click on it. When I was using Linux at that time I had not this kind of problem. Rinku Marvin Hechanova <[EMAIL PROTECTED]> wrote: You have to assign values to your n

RE: [PHP-DB] value error in PHP form

2004-06-20 Thread Kenny
This could be due to register globals on/off Use print $_POST['action']; print $_POST['Name']; Kenny -Original Message- From: Rinku [mailto:[EMAIL PROTECTED] Sent: 20 June 2004 12:23 To: [EMAIL PROTECTED] Subject: [PHP-DB] value error in PHP form Dear All, I have installed PHP on Win

[PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
Dear All, I have installed PHP on WinXp. I am using MySql as Backend on Apache server. Now the problem is.. I am writing this code : Here I should get output as LoginRinku But I am getting nothing. Can any of you guide me on this? Regards, Rinku