Showing results 1 to 6 of 6
Search took 0.01 seconds.
Posts Made By: PeppySoft
Forum: PHP Dec 27th, 2006
Replies: 4
Views: 1,376
Posted By PeppySoft
Re: user management software

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.
Forum: PHP Dec 27th, 2006
Replies: 3
Views: 3,073
Posted By PeppySoft
Re: calculating the date of birth

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,...
Forum: PHP Dec 27th, 2006
Replies: 1
Views: 4,788
Posted By PeppySoft
Re: retrieving image from mysql database using php

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()...
Forum: PHP Dec 27th, 2006
Replies: 1
Views: 1,386
Posted By PeppySoft
Re: About querystring

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...
Forum: PHP Dec 27th, 2006
Replies: 11
Views: 2,773
Posted By PeppySoft
Re: File Upload Help

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...
Forum: PHP Dec 27th, 2006
Replies: 2
Views: 1,647
Posted By PeppySoft
Re: Annoying T_Variable error

Use
$face = array_rand($names);

instead of

$face = array_rand($names) ;

You are using a <SPACE> after the array_rand() function
Showing results 1 to 6 of 6

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 8:47 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC