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

2001-11-20 Thread Russ Michell
I can see a few bodges: 1). > echo "\n"; should be: echo "\n"; 2). You have two vars named the 'first' but with different values: > echo "\t value='".stripslashes($first)."'>\n"; > echo "\t value='".stripslashes($last)."'>\n"; 3). Careful what you print in your posts, some may find it offen

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

2001-11-19 Thread Kodrik
you have 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 Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

[PHP-DB] [newbie] passing variables

2001-11-19 Thread pjc
I just started playing with PHP and MySQL and am building an online phonebook for myself. >From my 'view_all_numbers.php' I have a link that looks something like this: DELETE Here is the code from delete_entry_confirm.php Are you sure you want to delete "; echo "".$first." ".$last.""; echo