would it be proper to raise them to about age 3, put a plate of cookies in the room, leave them alone with the cookies for a few hours and if any of the cookies are gone when we return, throw them out to fend for themselves ? I think it's a good plan. Seems fair. Seems good. Seems loving.
What...
field around it ? Just curious.
Or do you think they DID come across it but the military is keeping it hush-hush so they can study the force-field ? Maybe that's why we're really there: to reverse engineer God's force-field, and, possibly, to search the Garden of Eden for oil. Or lion...
<?php
function reverseIt(&$strString) {
$strString = strrev($strString);
}
$strName = "Simon";
echo "<p>$strName ";
reverseIt($strName);
echo "reversed is $strName</p>";
?>
it works with the '&' but without it it just says 'Simon reversed is Simon' instead of 'Simon reversed is moniS'.
It's from...