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

2004-06-23 Thread Zachary Krakov
Hi Rinku, One problem I see is that the HTML tags appear to be off... Your HTML is improperly formatted, which could be causing rendering anomalies to occur, in addition to the register globals issue which I'll mention shortly. Please correct your HTML code to read: YOUR_PAGE_TITLE_HERE HTML_B

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

2004-06-23 Thread Zachary Krakov
The reason for this is due to the variable "$action" not having any relation to the action. Therefore, you should use the following if/then statement: if ($submit !== '') { // STATEMENTS } The "submit" name/value pair variable passed via your form is a named variable that possesses the value

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

2004-06-24 Thread Zachary Krakov
27;Variable1'])&&isset($_POST['Variable2'])) { Print "Rinku"; } Here, even if variables are not set then even I am getting Output as "Rinku". Could you pls answer for the query. Thanks, Rinku Zachary Krakov <[EMAIL PROTECTED]> wrote: Hi Rinku,

[PHP-DB] File Creation Date

2003-10-31 Thread Zachary Krakov
Hello All, Is there a way to get a fileĀ¹s creation date using any of the file handling functions in PHP? All I can find is the last modification date of a file. Thanks for your help, -Zak Krakov

Re: [PHP-DB] Script works on one server and not another...

2007-11-16 Thread Zachary Krakov
Hello Patricia, I figured out your problem... you had a hidden white-space character in your code that couldn't be parsed by PHP... specifically, on line 24, between the "age:" text element and form element. I have removed that pesky little white-space character, and your code appears to be