View Single Post
  #4  
Old 5th May 2010, 00:44
pdq pdq is offline
TBDev BANNED Warrior
 
Join Date: Sep 2008
P2P
Posts: 46
Default
PHP Code:
$stylesheet $_POST["stylesheet"]; 
should be like:
PHP Code:
$stylesheet = isset($_POST["stylesheet"]) ? $_POST["stylesheet"] : 1
strange that stylesheet didn't post though, did you make changes to my.php? if so can you post that file?

=]
Reply With Quote