Search found 56 matches
- Sat Jul 26, 2003 2:24 pm
- Forum: PHP - Code
- Topic: Download Tracking Question
- Replies: 5
- Views: 955
- Thu Jul 24, 2003 2:41 pm
- Forum: PHP - Code
- Topic: Mail problem when sending to AOL
- Replies: 9
- Views: 1569
Another one - check your sender e-mail - this e-mail must be valid. If you use mail() function and set 'From: sender@host.com' with headers passed to mail() in real e-mail headers you have 2 senders ('From' header) one from headers seted in mail() function and another one - http user (on UNIX like s...
- Thu Jul 24, 2003 2:32 pm
- Forum: PHP - Code
- Topic: Global Object Space / persistent objects in php?
- Replies: 2
- Views: 351
- Tue Jul 22, 2003 1:59 pm
- Forum: PHP - Code
- Topic: Really weird!
- Replies: 9
- Views: 2592
- Tue Jul 22, 2003 1:50 pm
- Forum: PHP - Code
- Topic: Loop question.
- Replies: 6
- Views: 970
$records_count = mysql_num_rows($get_all) $i = 0; while ($row = mysql_fetch_array($get_all)) { $i++; if ($row[3]) { echo $row[3]; echo ($record_count == $i) ? '' : ', '; } } hmmm this should work corectly only if you have an e-mail seted in last row. there is other idea :lol: <?php while ($row = my...
- Mon Jul 21, 2003 2:51 pm
- Forum: PHP - Code
- Topic: Single page website - question about article
- Replies: 5
- Views: 674
This path must be full path to your folder. If you are on Windows box you should use Windows style path - C:\your\files , if you are oh Unix (Linux) box - /your/files
For better explain see this:
http://php.net/manual/en/configuration. ... clude-path
For better explain see this:
http://php.net/manual/en/configuration. ... clude-path
- Mon Jul 21, 2003 2:31 pm
- Forum: PHP - Code
- Topic: Is there any method to create text file on Client machine ?
- Replies: 5
- Views: 1056
- Tue Jan 14, 2003 7:31 am
- Forum: PHP - Code
- Topic: session_start() kills my form ?
- Replies: 2
- Views: 604
Use
in the begining of you script, or change default cache behavior in php.ini
Code: Select all
ini_set ('session.cache_limiter','private, must revalidate');- Wed Jan 08, 2003 2:53 am
- Forum: PHP - Code
- Topic: PHP reference/manual in XML
- Replies: 2
- Views: 534
- Mon Jan 06, 2003 5:20 am
- Forum: PHP - Code
- Topic: PHP reference/manual in XML
- Replies: 2
- Views: 534
PHP reference/manual in XML
I need a php reference or manual in XML format. May be someone know from where i can get it ?
- Mon Jan 06, 2003 5:05 am
- Forum: PHP - Code
- Topic: repeat repeat repeat
- Replies: 3
- Views: 1082
- Thu Dec 26, 2002 3:51 am
- Forum: PHP - Code
- Topic: Get user real IP
- Replies: 3
- Views: 557
- Sun Dec 22, 2002 1:32 pm
- Forum: PHP - Code
- Topic: Optional parameters for custom functions.
- Replies: 3
- Views: 620
Code: Select all
function test($required,$not_required='') {
........
}Code: Select all
test('hallo');
test ('hallo','world');- Sun Dec 22, 2002 1:08 pm
- Forum: PHP - Code
- Topic: Get user real IP
- Replies: 3
- Views: 557
Huh, i find it
but these variables isn't in php doc ;-(
Code: Select all
$_SERVERї'HTTP_X_FORWARDED_FOR']
$_SERVERї'HTTP_VIA']- Sun Dec 22, 2002 12:10 pm
- Forum: PHP - Code
- Topic: Get user real IP
- Replies: 3
- Views: 557
Get user real IP
So, if user uses proxy server $_SERVER['REMOTE_ADDR'] is proxy's IP. How can get real user IP?