Thanks very much, and Merry Christmas to all--rather rude of me to've been
whining for help all this time and not remembering the courtesy of holiday
wishes.

Okay, I made the change to:

$txtBoxCounter = $_POST['txtBoxCounter'];
$hdnCounter = $_POST['hdnCounter'];

Now I get:

parse error: parse error, unexpected $ in [my path to this file] on line 34

I'm still missing the big picture.

Steve Tiano

-----------------

Change:

$txtBoxCounter = $_POST['txtBoxCounter]
$hdnCounter = $_POST['hdnCounter]

to


$txtBoxCounter = $_POST['txtBoxCounter'];
$hdnCounter = $_POST['hdnCounter'];

(Notice the ' at the end of txtBoxCounter and hdnCounter.

Merry X'mas

--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to