cffrost2

msg:4478954 | 4:27 am on Jul 26, 2012 (gmt 0) |
Not sure what you're really after here but to join 2 vars together you need to do this (and note the end php correction I made) <frame src="fac.php?id=<?php echo $_GET['id'].$_GET['spl']; ?>"></frame> |
| Instead of this <frame src="fac.php?id=<?php echo $_GET['id']& echo$_GET['spl']/></frame> |
| In other words, say you have 2 vars. $var1 = 'the'; $var2 = 'words'; Echo $var1.$var2; // prints as 'the words' Hope that makes sense.
|
rlange

msg:4479093 | 2:07 pm on Jul 26, 2012 (gmt 0) |
cffrost2 wrote: $var1 = 'the'; $var2 = 'words'; Echo $var1.$var2; // prints as 'the words' |
| I'm being nitpicky, but that would actually print "thewords"—no space in between. -- Ryan
|
|