Search results

  1. G

    PHP Chat Box and Form Help?

    Try this for an easy way to accomplish this: http://pastebin.com/raw.php?i=iR19uSUh Cheers, Gitlez
  2. G

    How would i script this in Php?

    <?php $firstArray = Array(); $firstArray [a] = "One"; $firstArray [b] = "Two"; $firstArray [c] ="Three"; $firstArray [d] ="Four"; $secondArray = Array(); foreach($firstArray as $key=>$value){ $secondArray[$value] = $key; } echo '<pre>'; print_r($firstArray); print_r($secondArray); echo...
Back
Top