[PHP] Re: [PHP-DB] [newbie] passing variables

2001-11-20 Thread Russ Michell
I can see a few bodges: 1). echo form action='delete_entry.php' action='get'\n; should be: echo form method='get' action='delete_entry.php'\n; 2). You have two vars named the 'first' but with different values: echo \t input type='hidden' name='first' value='.stripslashes($first).'\n;

[PHP] Re: [PHP-DB] [newbie] passing variables

2001-11-19 Thread Kodrik
you have form action='delete_entry.php' action='get' You have twice action and are missing the method. In your case, I guess it would be get. I didn't read on, so you might have more errors. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For