PDA

View Full Version : Javascript+PHP Echo Nightmare!


defi
03-23-2005, 04:07 AM
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!

hate
03-23-2005, 04:15 AM
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.

defi
03-23-2005, 04:19 AM
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]?

hate
03-23-2005, 04:21 AM
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.

defi
03-23-2005, 04:23 AM
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

hate
03-23-2005, 04:26 AM
// 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.

defi
03-23-2005, 04:32 AM
// 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

hate
03-23-2005, 04:36 AM
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";
?>

defi
03-23-2005, 05:02 PM
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?