View Full Version : Javascript+PHP Echo Nightmare!
Okay, so here's the dilemma. I've got the following code;
$read = "<SCRIPT LANGUAGE\=\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\"\;
</script>";
Now, The problem is I need to make it so the page redirects to a different page when that file is loaded! Here's how I have it setup -
$content_add = "<html>
<head>
<?php
echo $read;
?>
</head>... etc
Basically, I need to know how to edit the TOP code to be read with the echo code I'm pulling - I keep getting this error,
Parse error: parse error, unexpected '<', expecting ',' or ';' in /home/domainremoved/public_html/usernameremoved/index.php on line 4
Thanks in advance!
It looks like for one
$content_add = "<html>
<head> is missing the last "
But with out seeing all of the code it is hard to tell, I know making content to add into pages can be a pain in the , back end.
Here's the full code -
// ADD CONTENT TO INDEX.PHP
$read = "<SCRIPT LANGUAGE\=\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\"\;
</script>";
$content_add = "<html>
<head>
<?php
echo $read;
?>
</head>
<body>
<a href=\"http://www.thatcommunity.com/member.php?u=$userid\">if you're not redirected click here and consider a new browser.</a>
</body>
</html>";
Is there any other way to redirect in the header without this javascript that would STILL be able to read $bbuserinfo[userid]?
Try this $content_add = '<html>
<head>
<?php
echo $read;
?>
</head>
<body>
<a href=\"http://www.thatcommunity.com/member.php?u=$userid\">if you're not redirected click here and consider a new browser.</a>
</body>
</html>';
It is a minor change, but has worked for me in the past.
Oops, needed to specify this better - I need the following coded to avoid the parse error(s);
// ADD CONTENT TO INDEX.PHP
$read = "<SCRIPT LANGUAGE\=\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\"\;
</script>";
which turns into,
Parse error: parse error, unexpected '<', expecting ',' or ';' in /home/domainremoved/public_html/usernameremoved/index.php on line 4
// ADD CONTENT TO INDEX.PHP
$read = '<SCRIPT LANGUAGE\=\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\"\;
</script>'; perhaps ? remember this is just small change again.
// ADD CONTENT TO INDEX.PHP
$read = '<SCRIPT LANGUAGE\=\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\"\;
</script>'; perhaps ? remember this is just small change again.
Still getting this same parse error code,
Parse error: parse error, unexpected '<', expecting ',' or ';' in /home/thatcomm/public_html/Kevin/index.php on line 4
I tossed this code in a php file and no errors.
// ADD CONTENT TO INDEX.PHP
$read = '<SCRIPT LANGUAGE =\"JavaScript\">
window.location\=\"http://www.thatcommunity.com/member.php?u=$bbuserinfo[userid]\";
</script>';
Marco van Herwaarden
03-23-2005, 06:41 AM
Change:
<?php
echo $read;
?>
To:<?php
echo "$read";
?>
Change:
<?php
echo $read;
?>
To:<?php
echo "$read";
?>
I've tried that already - I'm thinking that maybe the best way to clear up the javascript parse erroring would be to make it insert the code from the MySQL database using a default field, stripping the slashes?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.