Page 1 of 1

[resolved] Quick Question....

Posted: Thu Aug 10, 2006 5:47 pm
by ibanez270dx
Hi,
Just a quick question... I need this to work, but it redirects to "$filename2" instead of "thename.xls".

Code: Select all

echo '<META http-equiv="refresh" content="0;URL=$filename2">';
What can I do with the quotes and stuff to make it work?

Thanks,
- Jeff

Posted: Thu Aug 10, 2006 5:51 pm
by feyd
read forward young padawan.

http://php.net/language.types.string

Posted: Fri Aug 11, 2006 12:44 am
by RobertGonzalez
Since you say it is resolved, but you did not say what you did to resolve, I will make an assumption...

Code: Select all

echo '<META http-equiv="refresh" content="0;URL=' . $filename2 . '">';