Click here to Skip to main content
15,890,579 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
QuestionHow to increase video clarity Pin
malrajphp18-Jul-09 0:36
malrajphp18-Jul-09 0:36 
AnswerRe: How to increase video clarity Pin
Marc Firth19-Jul-09 23:10
Marc Firth19-Jul-09 23:10 
Questionhelp building a project with cakephp Pin
Artakazezs16-Jul-09 23:54
Artakazezs16-Jul-09 23:54 
AnswerRe: help building a project with cakephp Pin
Marc Firth19-Jul-09 23:14
Marc Firth19-Jul-09 23:14 
AnswerRe: help building a project with cakephp Pin
magalaxmi11-Aug-10 21:53
magalaxmi11-Aug-10 21:53 
QuestionI want to generate Excel reports and Graphs using php, mysql pls help me Pin
Venkatalakshmi_n16-Jul-09 18:04
Venkatalakshmi_n16-Jul-09 18:04 
AnswerRe: I want to generate Excel reports and Graphs using php, mysql pls help me Pin
Marc Firth19-Jul-09 23:17
Marc Firth19-Jul-09 23:17 
AnswerRe: I want to generate Excel reports and Graphs using php, mysql pls help me Pin
enhzflep29-Jul-09 18:56
enhzflep29-Jul-09 18:56 
Here's a start:

<?php
$excel_app = new COM("Excel.application") or Die ("Did not connect");
$Workbook = $excel_app->Workbooks->Add() or Die('Did not open filename');
$excel_app->visible = 1; 
$Worksheet = $Workbook->Worksheets('Sheet1');
$Worksheet->activate;

$curVal = 1;
for ($curRow = 1; $curRow <= 10; $curRow++)
{
	for ($curCol=1; $curCol<=10; $curCol++)
	{
		$Worksheet->Cells($curRow, $curCol)->Value = $curVal;
		$curVal++;
	}
}


echo $excel_cell->value;

$Workbook->SaveAs("C:\\001");
$Workbook->Saved = true;
$Workbook->Close;

unset($Worksheet);
unset($Workbook);

$excel_app->Workbooks->Close();
$excel_app->Quit();

unset($excel_app);
?>

Questionlooking for a faster compiler for compiling c++ code under a Cygwin into .exe used run under Windows Pin
Seraph_summer14-Jul-09 20:48
Seraph_summer14-Jul-09 20:48 
AnswerRe: looking for a faster compiler for compiling c++ code under a Cygwin into .exe used run under Windows Pin
Jimmanuel17-Jul-09 7:31
Jimmanuel17-Jul-09 7:31 
GeneralRe: looking for a faster compiler for compiling c++ code under a Cygwin into .exe used run under Windows Pin
Indrora23-Sep-09 6:45
Indrora23-Sep-09 6:45 
AnswerRe: looking for a faster compiler for compiling c++ code under a Cygwin into .exe used run under Windows Pin
Indrora23-Sep-09 6:46
Indrora23-Sep-09 6:46 
Questionhow to coonect php with web data pro1.63? Pin
govind_22200714-Jul-09 19:07
govind_22200714-Jul-09 19:07 
QuestionPHP Help Pin
sarang_k13-Jul-09 6:35
sarang_k13-Jul-09 6:35 
AnswerRe: PHP Help Pin
Tony Richards13-Jul-09 9:03
Tony Richards13-Jul-09 9:03 
GeneralRe: PHP Help Pin
sarang_k17-Jul-09 18:58
sarang_k17-Jul-09 18:58 
AnswerRe: PHP Help Pin
Marc Firth13-Jul-09 22:00
Marc Firth13-Jul-09 22:00 
QuestionPHP Source code controller Pin
VarunPrakash12-Jul-09 1:58
VarunPrakash12-Jul-09 1:58 
AnswerRe: PHP Source code controller Pin
fly90412-Jul-09 4:16
fly90412-Jul-09 4:16 
GeneralRe: PHP Source code controller Pin
VarunPrakash12-Jul-09 7:04
VarunPrakash12-Jul-09 7:04 
QuestionRe: PHP Source code controller Pin
VarunPrakash12-Jul-09 20:14
VarunPrakash12-Jul-09 20:14 
AnswerRe: PHP Source code controller Pin
Tony Richards13-Jul-09 8:59
Tony Richards13-Jul-09 8:59 
GeneralRe: PHP Source code controller Pin
VarunPrakash13-Jul-09 21:37
VarunPrakash13-Jul-09 21:37 
QuestionRe: PHP Source code controller Pin
VarunPrakash14-Jul-09 0:27
VarunPrakash14-Jul-09 0:27 
AnswerRe: PHP Source code controller Pin
Muhammad Mazhar14-Jul-09 0:43
Muhammad Mazhar14-Jul-09 0:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.