Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\xampp\htdocs\include\base.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\include\base.php:23) in C:\xampp\htdocs\header.php on line 31

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\include\base.php:23) in C:\xampp\htdocs\header.php on line 32

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\include\base.php:23) in C:\xampp\htdocs\header.php on line 33

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\include\base.php:23) in C:\xampp\htdocs\header.php on line 34

I just downloaded XAMPP and installed it, but it uses PHP 5.3 and set_magic_quotes_runtime() was taken out of that version, so how can I fix this? Is there a way to put XAMPP back to PHP 4?

I put ob_start() at the top of header.php but that didn't fix the header problem.

Please help, it's messing up my forum. sad

Yes, that was just an example...

profile.php?section=rscd&id=101

I need to get to that URL.

Hi guys,

I've used this forum software on-and-off for 2 years now and still loving it.

I'm trying to add an additional menu item but the actual link needs to go to a profile page that is determined by a $_GET string.

How would I add an additional link to go to this URL (for example)?

profile.php?id=101

101 being my user ID that'd need to change for each user.

Is there something I can replace it with, like <USER_ID> or something that'll automatically get that for me?

...or is it possible to use PHP in that little box?

profile.php?id=<?php echo $_GET['id'];?>

Anyone?