Re: [PHP] PHP - Jasper Report Integeration

2008-12-05 Thread Johny John
Hi Chris, Sorry few days back also I posted the same request. But it did not shown up in my mailing list. That's why I posted it again thinking that my previous email did not reach. Sorry for the trouble. On Fri, Dec 5, 2008 at 11:52 AM, Chris <[EMAIL PROTECTED]> wrote: > Jo

[PHP] PHP - Jasper Report Integeration

2008-12-04 Thread Johny John
Dear All, Do any one know how to integrate PHP with Jasper Reports. I tried it..but its says "Unable to create Java Virtual Machine " Please refer this link for more details. http://jagadmaya.com/integration-phpjasperreports.html -- Regards, Johny www.phpshore.com

Re: [PHP] Will not report errors what can I do

2008-12-04 Thread Johny John
HI Terion, Please put the error reporting on top of the page and try. If you have any errors in the include file, it won't execute the rest of commands. Make the changes to code as follows. Regards, Johny John www.phpshore.com On Fri, Dec 5, 2008 at 3:50 AM, Terion Miller <[EMAIL P

[PHP] PHP - Jasper Report Integeration

2008-12-04 Thread Johny John
Dear All, Do any one know how to integrate PHP with Jasper Reports. I tried it..but its says "Unable to create Java Virtual Machine " Please refer this link for more details. http://jagadmaya.com/integration-phpjasperreports.html Regards, Johny www.phpshore.com

[PHP] PHP - Jasper Report Integeration

2008-11-30 Thread Johny John
Dear All, Do any one know how to integrate PHP with Jasper Reports. I tried it..but its says "Unable to create Java Virtual Machine " Please refer this link for more details. http://jagadmaya.com/integration-phpjasperreports.html -- Thanks & Regards, Johny www.phpshore.com

Re: [PHP] Gathering data

2007-12-13 Thread Johny John
Hi Eduardo, From your requirement I understand you need a website with php and mysql support. If you want to track or search something you need to store the data in a database or some where else like txt file or xml file/ -- Regards, Johny www.phpshore.com

Re: [PHP] // ?>

2007-12-13 Thread Johny John
On Dec 6, 2007 10:33 PM, Richard Lynch <[EMAIL PROTECTED]> wrote: > On Tue, December 4, 2007 7:41 pm, Kevin Schmeichel wrote: > > Here's some unexpected behavior: > > > > > // ?> what? > > ?> > > > > This will output "what?" - I expected no output, as is the case if the > > inline comment was a /

Re: [PHP] how to pass an array to Java script

2005-12-09 Thread Johny John
Sorry foe yhe inconvenience... Script is given below.. $name = $_GET['photo']; $id = $_GET['ga_id']; $objGA = new Gallery_Album($db); $objError = $objGA->getAlbum($id); $y = unserialize($objError['ga_images']); echo ""; $count = count($y); function getArray($count) { for ($i = 0; $i <

[PHP] how to pass an array to Java script

2005-12-09 Thread Johny John
Hi, How to pass an array (from php ) to java script and display it using javascript?... Jasus.