Reply
Help with simple string
Old 03-26-2008, 01:07 AM Help with simple string
Novice Talker

Posts: 12
Name: Orion Tiller
I have this code that I need help with. I just want to add the variable affid onto the end of the below string. So if $s="1009" in the php code then I would want the last line to become:

setTimeout('window.location="http://www.domain.com/link.php?o=10&s=1009";', 1);

Can someone please help me?

PHP Code:
 <script>
function redirect() {
        var affid = "<?php echo $s?>";
        setTimeout('window.location="http://www.domain.com/link.php?o=10&s=";', 1);  
 
}  
</script>
otiller is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
     
Old 03-26-2008, 04:11 PM Re: Help with simple string
willcode4beer's Avatar
Webmaster Talker

Posts: 593
Name: Paul Davis
Location: San Francisco
see bold:
Code:
<script>
function redirect() {
        var affid = "<?php echo $s; ?>";
        setTimeout('window.location="http://www.domain.com/link.php?o=10&s="+affid;', 1);  
 
}  
</script>
__________________
Paul Davis
willCode4Beer.com (coding for all the right reasons)
willcode4beer is offline
Reply With Quote
View Public Profile
 
Old 03-26-2008, 10:52 PM Re: Help with simple string
Novice Talker

Posts: 11
Name: Tortoise
Or just:

Quote:
Originally Posted by willcode4beer View Post
see bold:
Code:
<script>
function redirect() {
        setTimeout('window.location="http://www.domain.com/link.php?o=10&s=<?php echo $s; ?>"', 1);  
 
}  
</script>
Tortoise is offline
Reply With Quote
View Public Profile
 
Old 03-27-2008, 09:22 PM Re: Help with simple string
willcode4beer's Avatar
Webmaster Talker

Posts: 593
Name: Paul Davis
Location: San Francisco
lol, even better
__________________
Paul Davis
willCode4Beer.com (coding for all the right reasons)
willcode4beer is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Help with simple string
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.12036 seconds with 13 queries