iDeveloperNetwork Homepage
Information about Company
Our Expertise Software Development Services Our Representative Projects Our Customers Our terms and conditions Contact Information
Contact Us


Our ExpertiseCompany CustomersCompany Projects
Our terms and conditionsBonuses for our Customers Site Map
Articles



UK Head Office

iDeveloperNetwork Limited
7 Summerleaze Road,
Maidenhead, Berkshire, SL6 8SP
Company number: 03912678
Fax: +44 (0) 20 7900 2071
Email: info@idevelopernetwork.com
Webmaster: webmaster@idevelopernetwork.com


Branches:

iDeveloperNetwork - United Kingdom
Suite 7, Grove House,
Kensal Road, London W10 5BZ, UK
Email: uk_contact@idevelopernetwork.com

iDeveloperNetwork - Europe
Havnegade 53A, 1, 1058 København K, Denmark Email: europe_contact@idevelopernetwork.com

iDeveloperNetwork - USA
16835 Algonquin Street #434
Huntington Beach, CA 92649-3852, USA
Email: usa_contact@idevelopernetwork.com

iDeveloperNetwork - Russia
P.O. Box 47, 107392, Moscow, Russia
Email: ru_contact@idevelopernetwork.com

Contact Us


\n

Error:
"; } echo "
- Please write your full name.
"; $err=1; } if ($email=="") { if ($err==0) { echo "
\n
Error:
"; } echo "
- Please write your E-mail.
"; $err=1; } if ( count($myfiles) != count(array_unique($myfiles)) ) { if ($err==0) { echo "
\n
Error:
"; } echo "
- Please don't upload files with equal names!
"; $err=1; } else { if ( ereg( "^\.(.*)" , $webimage1_name) || ereg( "^\.(.*)" , $webimage2_name) || ereg( "^\.(.*)" , $webimage3_name) || ereg( "^\.(.*)" , $webimage4_name) ) { if ($err==0) { echo "
\n
Error:
"; } echo "
- You can't upload files with names starting with dot.
"; $err=1; $webimage1_name="";$webimage2_name=""; $webimage3_name="";$webimage4_name=""; } if ($webimage1_name!="") { @copy($webimage1, "$temppath/$webimage1_name"); //if (file_exists("$temppath/$webimage1_name") ) { // $fsize =@filesize("$temppath/$webimage1_name"); // //echo $fsize; // if ($fsize>1550000) { // if ($err==0) { echo "
\n
Error:
"; } // echo "
- Please don't upload files larger than 1.5Mb!
"; // $err=1; // @unlink("$temppath/$webimage1_name"); // } //} } if ($webimage2_name!="") { @copy($webimage2, "$temppath/$webimage2_name"); //if (@file_exists("$temppath/$webimage2_name") ) { // $fsize =@filesize("$temppath/$webimage2_name"); // //echo $fsize; // if ($fsize>1550000) { // if ($err==0) { echo "
\n
Error:
"; } // echo "
- Please don't upload files larger than 1.5Mb!
"; /// $err=1; // @unlink("$temppath/$webimage2_name"); // } //} } if ($webimage3_name!="") { @copy($webimage3, "$temppath/$webimage3_name"); //if (@file_exists("$temppath/$webimage3_name") ) { // $fsize =@filesize("$temppath/$webimage3_name"); // //echo $fsize; // if ($fsize>1550000) { // if ($err==0) { echo "
\n
Error:
"; } // echo "
- Please don't upload files larger than 1.5Mb!
"; // $err=1; // @unlink("$temppath/$webimage3_name"); // } //} } if ($webimage4_name!="") { copy($webimage4, "$temppath/$webimage4_name"); //if (@file_exists("$temppath/$webimage4_name") ) { // $fsize =@filesize("$temppath/$webimage4_name"); // //echo $fsize; // if ($fsize>1550000) { // if ($err==0) { echo "
\n
Error:
"; } // echo "
- Please don't upload files larger than 1.5Mb!
"; // $err=1; // @unlink("$temppath/$webimage4_name"); // } //} } } if ($err==1) { $mode=""; if ($webimage1_name!="") { @unlink("$temppath/$webimage1_name"); } if ($webimage2_name!="") { @unlink("$temppath/$webimage2_name"); } if ($webimage3_name!="") { @unlink("$temppath/$webimage3_name"); } if ($webimage4_name!="") { @unlink("$temppath/$webimage4_name"); } } else { $boundary = '-----=' . md5( uniqid ( rand() ) ); $subject="Request-for-proposal"; if ($cphone && $cemail) { $cby="by phone and by email";} else if ($cphone) { $cby="by phone"; } else if ($cemail) { $cby="by email"; } $sm="Fullanme: ".strip_tags(stripslashes($fullname))." Company: ".$companyname." E-mail: ".strip_tags(stripslashes($email))." Phone: ".strip_tags(stripslashes($phone))." I would like to be contacted by: ".$cby." Comments: ".stripslashes($comments)." Details: ".stripslashes($details)." \n"; $email="webform@idevelopernetwork.com"; $hh = "From: \"Request-For-Proposal WebForm\" \nReply-To: $PPLMAIL\nX-Mailer: PHP/" . phpversion(); $hh=$hh."\n"; $hh=$hh."MIME-Version: 1.0\n"; // $hh=$hh."Content-Type: text/plain; charset=iso-8859-1\n"; $hh=$hh."Content-Type: multipart/mixed; boundary=\"$boundary\";\n"; $hh=$hh."Content-Transfer-Encoding: 7bit\n"; $hh=$hh."--".$boundary."\n"; if ($webimage1_name!="") { $path=$temppath."/".$webimage1_name; $fp = @fopen($path, 'r'); do //we loop until there is no data left { $data = @fread($fp, 8192); if (strlen($data) == 0) break; $content .= $data; } while (true); $sm=$sm."--".$boundary."\n"; $sm=$sm."Content-Type: application/octet-stream; name=\"$webimage1_name\";\n"; $sm=$sm."Content-Transfer-Encoding: base64\n"; $sm=$sm."Content-Disposition: attachment; filename=\"$webimage1_name\"\n\n"; // $content_encode = chunk_split(base64_encode($content)); $sm .= $content_encode . "\n"; $sm .= "--" . $boundary . "\n"; } if ($webimage2_name!="") { $content=""; $path=$temppath."/".$webimage2_name; $fp = @fopen($path, 'r'); do //we loop until there is no data left { $data = @fread($fp, 8192); if (strlen($data) == 0) break; $content .= $data; } while (true); $sm=$sm."--".$boundary."\n"; $sm=$sm."Content-Type: application/octet-stream; name=\"$webimage2_name\";\n"; $sm=$sm."Content-Transfer-Encoding: base64\n"; $sm=$sm."Content-Disposition: attachment; filename=\"$webimage2_name\"\n\n"; // $content_encode = chunk_split(base64_encode($content)); $sm .= $content_encode . "\n"; $sm .= "--" . $boundary . "\n"; } if ($webimage3_name!="") { $content=""; $path=$temppath."/".$webimage3_name; $fp = @fopen($path, 'r'); do //we loop until there is no data left { $data = @fread($fp, 8192); if (strlen($data) == 0) break; $content .= $data; } while (true); $sm=$sm."--".$boundary."\n"; $sm=$sm."Content-Type: application/octet-stream; name=\"$webimage3_name\";\n"; $sm=$sm."Content-Transfer-Encoding: base64\n"; $sm=$sm."Content-Disposition: attachment; filename=\"$webimage3_name\"\n\n"; // $content_encode = chunk_split(base64_encode($content)); $sm .= $content_encode . "\n"; $sm .= "--" . $boundary . "\n"; } if ($webimage4_name!="") { $content=""; $path=$temppath."/".$webimage4_name; $fp = @fopen($path, 'r'); //echo $path; do //we loop until there is no data left { $data = @fread($fp, 8192); if (strlen($data) == 0) break; $content .= $data; } while (true); $sm=$sm."--".$boundary."\n"; $sm=$sm."Content-Type: application/octet-stream; name=\"$webimage4_name\";\n"; $sm=$sm."Content-Transfer-Encoding: base64\n"; $sm=$sm."Content-Disposition: attachment; filename=\"$webimage4_name\"\n\n"; // $content_encode = chunk_split(base64_encode($content)); $sm .= $content_encode . "\n"; $sm .= "--" . $boundary . "\n"; } $sm=$sm."--".$boundary."--\n"; if (@mail("yurii@idevelopernetwork.com", $subject, $sm, $hh) && @mail("andrei@idevelopernetwork.com", $subject, $sm, $hh)) { echo "

Request was succesfully sent.



"; } else { echo "
Error!

Request WAS NOT sent.





"; } if ($webimage1_name!="") { @unlink("$temppath/$webimage1_name"); } if ($webimage2_name!="") { @unlink("$temppath/$webimage2_name"); } if ($webimage3_name!="") { @unlink("$temppath/$webimage3_name"); } if ($webimage4_name!="") { @unlink("$temppath/$webimage4_name"); } } } if ($mode=="") { ?>
You can use this form to submit a request-for-proposal (RFP), and we'll contact you immediately.
Full name (required): Company:
E-mail (required): Phone:
Comments:


How you would like to be contacted:
type=checkbox name=cphone> Phone type=checkbox name=cemail> E-mail
You may upload any relevant files if you wish.

Please provide us with as much detail as possible about your expectations and project requirements:



Copyright © 1998-2010 iDeveloperNetwork - USA / UK / DK .   All Rights Reserved          Hosted by Dyntex