[resolved] Quick Question....

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

Post Reply
ibanez270dx
Forum Commoner
Posts: 74
Joined: Thu Jul 27, 2006 12:06 pm
Location: Everywhere, California

[resolved] Quick Question....

Post 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
Last edited by ibanez270dx on Thu Aug 10, 2006 6:27 pm, edited 1 time in total.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

read forward young padawan.

http://php.net/language.types.string
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post 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 . '">';
Post Reply