RE: [PHP-DB] Re: using href=abc.php/?day=......

2003-10-22 Thread Robert Sossomon
To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Re: using href=abc.php/?day=.. BECOMES: a href=abc.php?day=$start_day /a This works only if it's within an echo statement: echo a href='abc.php?day=$start_day'; and you must make sure to either use single quotes around the href link, or else

RE: [PHP-DB] Re: using href=abc.php/?day=......

2003-10-21 Thread Robert Sossomon
Where are you getting the PHP variable from, another page, or ??? I use the print function in my scripts, mainly have the script write everything to one big variable and then printing the variable. By using this method I can code the pieces in the big variable and they all come out nice and

RE: [PHP-DB] Re: using href=abc.php/?day=......

2003-10-21 Thread Robert Sossomon
Sorry, I was over thinking... Just modify it by removing the echo and the / and it should code right out for you. a href=abc.php/?day=+?echo $start_day;? /a BECOMES: a href=abc.php?day=$start_day /a Robert -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: