PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
ibanez270dx
Forum Commoner
Posts: 74 Joined: Thu Jul 27, 2006 12:06 pm
Location: Everywhere, California
Post
by ibanez270dx » Thu Aug 10, 2006 5:47 pm
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
Last edited by
ibanez270dx on Thu Aug 10, 2006 6:27 pm, edited 1 time in total.
feyd
Neighborhood Spidermoddy
Posts: 31559 Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA
Post
by feyd » Thu Aug 10, 2006 5:51 pm
RobertGonzalez
Site Administrator
Posts: 14293 Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA
Post
by RobertGonzalez » Fri Aug 11, 2006 12:44 am
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 . '">';