"Prachi Shroff" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > the link just says > javascript:window.open( > Why would that happen?
> R'twick Niceorgaw <[EMAIL PROTECTED]> wrote: echo " href=\"javascript:window.open(\"addfossilpage.php?me=$folder_id\",\"width=43 > 0\",\"height=450\" )\">"; Count your quotes...your string is href="javascript:window.open(" At that second quote your string ends. Use single quotes inside the doubles, or single quote the entire string and get rid of the slashes. Something like: echo 'href="javascript:window.open("addfossilpage.php?me=' . $folder_id . '","width=43 0","height=450" )">'; - Steve Yates - I drank WHAT!? - Socrates / Taglines by Taglinator - www.srtware.com / -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php