[PHP] PHP Consultant / Contractor

2006-11-07 Thread Max Clark

Hi all,

I apologize in advance for a commercially orientated posting in this 
discussion list - I did not see a business focused list to use instead.


I am looking for a good reliable PHP developer that can help with some 
one off projects that I have (10-20 hours a month perhaps) - geographic 
location is not a concern (aka I am open to persons outside of the US), 
the requirement of reliable communication and timely delivery is absolute.


If you are interested in something like this please email me off list 
with your Resume/CV, any sample projects that would be good to look at, 
and of course your contact information.


Thanks,
Max

max [at] clarksys [dot] com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] case statement?

2002-12-19 Thread Max Clark
Hi-

I was wondering if php had a case function?

Instead of building a large if/elseif/else block I would like to do a case
$page in (list).

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] pcre pattern match help

2002-12-17 Thread Max Clark
Hi-

I would like to do a pattern match against a string, sometimes this pattern
will include the full string, and sometimes it will not, if the pattern does
not include the second match I still want to get the first pattern match.

Below is my code, and the results I am looking for.

Thanks in advance,
Max

preg_match (/\:\[(\S+)\]\:(\S*)/,$transport,$matches);
print_r ($matches);

$tranport = :[127.0.0.l);
print_r ($transport) - Array ( )
** I want this to return 127.0.0.1

$transport = smtp:[64.70.36.4]:25;
print_r ($transport) - Array ( [0] = :[64.70.36.4]:25 [1] = 64.70.36.4
[2] = 25 )





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Verisign Credit Card Processing with PHP

2002-12-17 Thread Max Clark
Hi-

I was wondering anyone out there is using the verisign payflo product with
php and could share their experiances with me.

Are there good alternate choices that I should be looking at?

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] regex for fqdn test

2002-12-16 Thread Max Clark
Hi-

I was wondering if someone could help me with a regex to test for a valid
domain name (foo.com).

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Socket_connect() timeout

2002-12-16 Thread Max Clark
Hi-

Warning: socket_connect() unable to connect [60]: Operation timed out in
/usr/home/maxc/public_html/admin/functions.inc on line 66

Is there any way to time out this function? I only want to wait 5 seconds.

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Socket_connect() timeout

2002-12-15 Thread Max Clark
Warning: socket_connect() unable to connect [60]: Operation timed out in
/usr/home/maxc/public_html/admin/functions.inc on line 66

Is there any way to time out this function? I only want to wait 5 seconds.

Thanks in advance,
Max

Johannes Schlueter [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
On Friday 13 December 2002 21:30, Max Clark wrote:
 I found the socket_create function that is listed as experimental and
 requires a re-compile of php. Is there a built in way to perform this kind
 of test?


Based upon the second example on
http://www.php.net/manual/en/ref.sockets.php :

echo h2TCP/IP Connection/h2\n;

/* Get the service for TCP-Port 25. */
$service_port = getservbyport (25, 'tcp');

/* Get the IP address for the target host. */
$address = gethostbyname ('www.example.com');

/* Create a TCP/IP socket. */
$socket = socket_create (AF_INET, SOCK_STREAM, 0);
if ($socket  0) {
echo socket_create() failed: reason:  . socket_strerror ($socket) .
\n;
} else {
echo OK.\n;
}

echo Attempting to connect to '$address' on port '$service_port'...;
$result = socket_connect ($socket, $address, $service_port);
if ($result  0) {
echo socket_connect() failed.\nReason: ($result)  .
socket_strerror($result) . \n;
} else {
echo OK.\n;
}


johannes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] newbie - decimal places in arthimetic functions

2002-12-13 Thread Max Clark
Hi-

How can I control the decimal places returned by an arthimetic function?

I would like this divsion function to only return two decimal places
(rounded up).

$calcsize = $value / $oneGig;

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Testing smtp server

2002-12-13 Thread Max Clark
Hi-

I would like to open a connection to tcp port 25 (smtp) as a conditional in
a script (if succeeds to this, else to that).

I found the socket_create function that is listed as experimental and
requires a re-compile of php. Is there a built in way to perform this kind
of test?

Thanks in advance,
Max





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php