I'm trying to send a variable an include that is recieve from another page:
- navi.php- <a href =\"'http://www.example.com/view.php?offset=0\">Test</a>
- view.php -
I recieve $offset with avalue of "0" nicely, "echo ("$offset");" will show a value.
Now a do this:
include 'http://www.example.com/guestbook.php?option=view&offset=$offset';
Variables do not get parsed inside single quotes. Either quote your include statement with double quotes, or break out of the single quotes and append the variable.
-- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 john@xxxxxxxxxxxx
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php