Recent content by Xub Yubzub

  1. X

    Good news! My wife and I had twins! A boy and a girl! So, I was wondering...?

    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...
  2. X

    During the war in Iraq, has anyone come across a magical garden with a force

    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...
  3. X

    PHP question: what is the role and the name(PHP wise) of the '&' symbol in this code ?

    <?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...
Back
Top