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.

5 Endorsements
Ranked #341
Ranked #31.8K
~1K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

6 Posted Topics

Member Avatar for mesamb1

Use $face = array_rand($names); instead of $face = array_rand($names) ; You are using a <SPACE> after the array_rand() function

Member Avatar for frops
1
155
Member Avatar for azarudeen

I believe you want to calculate the age if teh date of birth is given: If that is the case you can use the following function: function persons_age($year, $month, $day) { //list($year, $month, $day) = split('[-.]', $BirthDate); $tmonth = date('n'); $tday = date('j'); $tyear = date('Y'); $years = $tyear - …

Member Avatar for proDharm
0
181
Member Avatar for alfredtiu

You should not send any output to the browser before header("Content-length: $size"); header("Content-type: $type"); header("Content-Disposition: attachment; filename=$name"); Always header() should be the first to send output to the browser. Try removing all the echo statements in that file above header()

Member Avatar for kalpanasarvan
0
366
Member Avatar for HailttRedskins

Normally file upload using files will be allowed 2MB in PHP (That is default setting in php.ini file). Ask your server admin about this limit. You can use FTP functions to upload can be found at [url]http://in.php.net/ftp[/url].

Member Avatar for Dsiembab
0
171
Member Avatar for woocha

Use the phpBB's phpbb_users table for the authentication in all the sections. As I remember you can find in phpBB's includes/sessions.php file.

Member Avatar for PeppySoft
0
170
Member Avatar for mahe4us

Sending through URL means sending information using GET method which will accept maximum of 4KB. better you should encode the data while sending by GET method becuase if your data is having '&' then that will be treated as parameter seperator and will not be treated as part of the …

Member Avatar for PeppySoft
0
132

The End.