I have a class
class files{
function displayhtml(){?>
select name="df">
for($i=0;$i<10;$i++){?>
<option value="<?php echo "$i"; ?>"><?php echo "$i"; ?></option><?php
}?></select><?php
}
}
?>
I have a file newgetfile.php, i need to display this drop down in newgetfile.php by calling this function in newgetfile.php
You need to use the html part as string.