Hy i'm using the lasted php excell, and i'm dificult to solve one issue, in my db i have a row that its full with full url, how can i make it hyperlink for all cells, because on internet i've found only for one cell...this is the code
while ($row = mysql_fetch_object($result)) {
$objPHPExcel->getActiveSheet()
->setCellValue('B11','Photo')
->setCellValue('B'.$rowNumber,$row->photo);////this is the row of db with full url..
$rowNumber++;
}