What will be the output for the below code?
for ($col = 0; $col < $highestColumnIndex; ++ $col) {
$cell = $worksheet->getCellByColumnAndRow($col, $row);
$val = $cell->getValue();
echo "Print Value is: "…Read More
How will you get the uploaded file name in PHP?
$filename=$_FILES['fileToUpload']['name'];
Note: "fileToUpload" will be taken from name of the input type '<input type="file" name="fileToUpload" id="fileToUpload">'
…Read More
0 comments:
Post a Comment