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...
  3. 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
  4. 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...
  5. G

    Parse error: syntax error, unexpected T_DNUMBER in

    Hey Wayne, We need to see the script in order for us to be able to tell you were the error is. http://www.pastebin.com Cheers, Gitlez
  6. G

    I need to get a form (CGI) using PHP to actually send to the e-mail?

    This is most likely because your servers mail() functions has been disabled. Send me your script, so I can double check for script errors. Also take a look at http://www.gitlez-ans.co.cc/?Mw== for a little more info on your problem. It's a brief description of the possible errors you have...
Back
Top