Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
Ranked #4K
~446 People Reached
Favorite Tags

2 Posted Topics

Member Avatar for ehpratah

We can use the strtoupper() function to do the trick for us <?php $word = "we Love php"; $word = strtoupper($word); echo $word; //WE LOVE PHP ?>

Member Avatar for designershiv
0
178
Member Avatar for kunaldinde

Hi, I have gone through this program. try{ String ROOT_PATH = "C:\\tomcat\\webapps\\SnetReport\\REPORT\\"; FileInputStream in = new FileInputStream(ROOT_PATH + sFilename); response.setContentType("application/xls"); response.setHeader("Content-Disposition", "attachment;filename=\"Report.xls\""); int i; while ((i=in.read()) != -1) { out.write(i); } in.close(); out.close();}catch(Exception e) System.out.println("...error while loading: "+e.toString());} In the above code what is the sFileName

Member Avatar for Jaisu_jas
0
268

The End.