Link to home
Start Free TrialLog in
Avatar of aletheia2
aletheia2

asked on

Crystal Reports & PHP

Hi everybody,
I would like to know if it's possible to use Crystal Reports with PHP.

If it's possible, can you please provide me a sample code that shows how to pass parameters from the PHP page to my report.

Thanks in advance.
ASKER CERTIFIED SOLUTION
Avatar of Marcus Aurelius
Marcus Aurelius
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Forced accept.

Computer101
EE Admin
Avatar of otldave
otldave

Hello, please can anyone help me convert this php code into crystal syntax ?
$string = "111001111110111111001111111111";
$nr = 0;
while (isset($string{$nr})) {
    $data[$nr] = $string{$nr}; 	
	if($data[$nr]==1){
    	echo date("d-m-Y",$tmp1) . '<br>';
	}
	$tmp1=$tmp1+$week;
    $nr++;    
}  

Open in new window

otldave
Please ask your own question.

mlmc