hey i have a page where i have a class and it contains some variables for css values.
the problem is how do i pass the values of that class to the separate php file which is parsed as css file.
my page structure is like this
<?php include('someclass.php');?>
<html>
<head>
<title>title</title>
<link href="style.php" rel="stylesheet" type="text/css">
</head>
<body>
<?php $data=new data;
$data->activate();
?>
</body>
</html>
this page works fine but i need to send the variables of the class to the php(css) file, how do i do it?