Re: [PHP] Need Part-time Coder

2011-12-28 Thread Kevin Kinsey
You'll want your PHP code to be proprietary and encoded,
of course.

Run this script, save the output, and then run *that*.

?php

$helloworld = 'Hello World';
$n = 30;
for($i=0; $i$n; $i++)
{$helloworld = base64_encode($helloworld);
}
echo '?php\n$h=';
echo chunk_split($helloworld);
echo ';';
echo 'for($i=0;$i'.$n.'; $i++)';
echo '{$h = base64_decode($h);}';
echo 'echo $h;';


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



Re: [PHP] Need Part-time Coder

2011-12-27 Thread Ashley Sheridan
On Tue, 2011-12-27 at 17:29 -0500, John R. Cornell II wrote:

 Email PHP sample for consideration


?php
echo hello world;
?

Reply to list with a few more details for a more detailed reply ;)

-- 
Thanks,
Ash
http://www.ashleysheridan.co.uk




Re: [PHP] Need Part-time Coder

2011-12-27 Thread Fatih P.
On Wed, Dec 28, 2011 at 12:54 AM, Ashley Sheridan
a...@ashleysheridan.co.ukwrote:

 On Tue, 2011-12-27 at 17:29 -0500, John R. Cornell II wrote:

  Email PHP sample for consideration


 ?php
 echo hello world;
 ?

 Reply to list with a few more details for a more detailed reply ;)


?php echo  ;) ; ?


RE: [PHP] Need Part-time Coder

2011-12-27 Thread HallMarc Websites
 -Original Message-
 From: rickycorn...@gmail.com [mailto:rickycorn...@gmail.com] On Behalf Of
 John R. Cornell II
 Sent: Tuesday, December 27, 2011 5:29 PM
 To: php-general@lists.php.net
 Subject: [PHP] Need Part-time Coder
 
 Email PHP sample for consideration
[] 
Is this the same person that was looking a month ago or...? 

Either way, asking for a Sample is not the best way to determine a coders
capabilities. Anyone including a three year old could copy and paste
anything and claim it as their own. When it comes to contracting a coder it
is probably best to ask them for a portfolio and/or references. If you want
to hire them instead as an employee then maybe you could have a competent
coder interview them. Thanks for playing. 


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



Re: [PHP] Need Part-time Coder

2011-12-27 Thread Paul Halliday
On Tue, Dec 27, 2011 at 6:55 PM, Fatih P. fatihpirist...@gmail.com wrote:
 On Wed, Dec 28, 2011 at 12:54 AM, Ashley Sheridan
 a...@ashleysheridan.co.ukwrote:

 On Tue, 2011-12-27 at 17:29 -0500, John R. Cornell II wrote:

  Email PHP sample for consideration


 ?php
 echo hello world;
 ?

 Reply to list with a few more details for a more detailed reply ;)


 ?php echo  ;) ; ?

?php
$a = array('he', 'llo', ' ', 'w', 'orld', '!');
for($i = 0, $ln = sizeof($a); $i  $ln; ++$i) { echo $a[$i]; }
?

-- 
Paul Halliday
http://www.squertproject.org/

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



Re: [PHP] Need Part-time Coder

2011-12-27 Thread Ryan Cunningham
How can I get in touch thats the best code I have seen for a long time LMOA

On Tue, Dec 27, 2011 at 6:03 PM, Paul Halliday paul.halli...@gmail.comwrote:

 On Tue, Dec 27, 2011 at 6:55 PM, Fatih P. fatihpirist...@gmail.com
 wrote:
  On Wed, Dec 28, 2011 at 12:54 AM, Ashley Sheridan
  a...@ashleysheridan.co.ukwrote:
 
  On Tue, 2011-12-27 at 17:29 -0500, John R. Cornell II wrote:
 
   Email PHP sample for consideration
 
 
  ?php
  echo hello world;
  ?
 
  Reply to list with a few more details for a more detailed reply ;)
 
 
  ?php echo  ;) ; ?

 ?php
 $a = array('he', 'llo', ' ', 'w', 'orld', '!');
 for($i = 0, $ln = sizeof($a); $i  $ln; ++$i) { echo $a[$i]; }
 ?

 --
 Paul Halliday
 http://www.squertproject.org/

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




-- 

Regards
*Ryan Cunningham*
Owner
Construct Media Web Development / SEO / SMMhttp://www.constructmedia-usa.com
Office: 352 671 7868 Cell: 352 857 2040

Twitter http://www.twitter.com/constructmedia |
Facebookhttp://www.facebook.com/RyanCunninghamUSA| Google
Profile https://plus.google.com/116504326755759708880 | Linked
inhttp://www.linkedin.com/in/constructmedia| Client
Support Desk http://constructmedia-usa.com/ostic/
http://www.facebook.com/RyanCunninghamUSA

Don't think you are. Know you are!.




The information contained in this message may be privileged, confidential,
and protected from disclosure. If the reader of this message is not the
intended recipient, or any employee or agent responsible for delivering
this message to the intended recipient, you are hereby notified that any
dissemination, distribution, or copying of this communication is strictly
prohibited. If you have received this communication in error, please notify
us immediately by replying to the message and deleting it from your
computer. Thank you. Construct Media. CMI © 2006-2011

Please note all photo images should be sent in the largest highest quality
format you have available, you also verify in sending the images they are
free from copyright and usage terms and that you are the owner of such art
work and are legally allowed to use this material. You agree that in
supplying the artwork to Construct Media you shall not hold CMI responsible
for any copyright infringement and or violation that may result from the
finished article or any part there of. You also agree to allow Construct
Media to use the images, and or manipulate them for artistic use in your
work. You also agree that your work may be used in the capacity of previous
work, Portfolio, or web examples to showcase our clients, in return for
this usage all links to your URL will always remain in tact and you shall
benefit from the free advertising.Construct Media. © CMI 2006-2011


Re: [PHP] Need Part-time Coder

2011-12-27 Thread Andre Polykanine
Hello Paul,

  
PH for($i = 0, $ln = sizeof($a); $i  $ln; ++$i) { echo $a[$i]; }

foreach ($a as $v) {
echo $v;
}

:P ;-)

-- 
With best regards from Ukraine,
Andre
Skype: Francophile
My blog: http://oire.org/menelion (mostly in Russian)
Twitter: http://twitter.com/m_elensule
Facebook: http://facebook.com/menelion


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