RE: [PHP] Re: Host OnLine ?

2001-08-06 Thread Robert Collins
Why not use ping like -Original Message- From: Arcadius A. [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 10:17 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Host OnLine ? What if the host I'm checking is a simple workstation not running neither a HTTP nor a FTP server ? I'm

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Robert Collins
www.insight.com is a publicly traded fortune 1000 company. The site is 50% php now and will be launching its new site this week that will move it up to 90% php. a demo will be available today. -Original Message- From: Maurice Rickard [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 200

RE: [PHP] phpinfo ?

2001-01-26 Thread Robert Collins
looks like you forgot the semi-colon (;) at the end of phpinfo(); Robert W. Collins Web Developer II Insight / TC Computers www.insight.com www.tccomputers.com - Original Message - From: "kaab kaoutar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 26, 2001 10:23 AM Su

RE: [PHP] Check for Page

2001-01-26 Thread Robert Collins
Try this: Robert W. Collins Web Developer II Insight / TC Computers www.insight.com www.tccomputers.com -Original Message- From: Karl J. Stubsjoen [mailto:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 1:58 PM To: PHP Mailing List Subject: [PHP] Check for Page How could I: How co

RE: [PHP] rand(), mt_rand(), and my inability to make either of them random.

2001-01-26 Thread Robert Collins
this is a function that I wrote to solve this problem, but it is almost impossible to get a truly random number you can get somthing pretty close by seeding with somthing like the time function, using the seconds since epoch and this should be hard to duplicate. $rand"; $lownum = "1"; $highnum

RE: [PHP] File upload error

2001-01-26 Thread Robert Collins
that sounds like a permissions error. check the permissions for all of the directories and the file along your path. -Original Message- From: Data Driven Design [mailto:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 1:04 PM To: [EMAIL PROTECTED] Subject: [PHP] File upload error I ha

RE: [PHP] HELP!!! $PHP_AUTH_USER!!!!!!

2001-01-23 Thread Robert Collins
Try this: try:password : testusername : test"); $title = "Password"; echo "OK, you can look at this page!"; ?> -Original Message- From: Bruno Freire [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 10:45 AM To: '[EMAIL PROTECTED]' Subject: [PHP] HELP!!! $PHP_AUTH_US

RE: [PHP] decimal point movement...

2001-01-18 Thread Robert Collins
Christopher, try a regular expression somthing like this Robert -Original Message- From: Christopher Allen [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 11:35 AM To: php Subject: [PHP] decimal point movement... Greetings! I am looking for an efficeient way to assign

RE: [PHP] REGEX for tag attributes?

2001-01-17 Thread Robert Collins
Thomas, Not sure if this si what you want but it may start you in the right direction. "; preg_match_all( '/\S*\s?=\s?\S+[^>]/', $bob, $match ); foreach ($match[0] as $match_result) { echo $match_result.""; } ?> Robert W. Collins Web Developer II Insight / TC Computers www.insigh

RE: [PHP] Matching irregular cases

2001-01-17 Thread Robert Collins
Steve, Try the ereg_replace()somthing like this: eregi_replace($search_query, "$search_query", $row[6]); Robert W. Collins Web Developer II Insight / TC Computers www.insight.com www.tccomputers.com -Original Message- From: jalist [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 1