Jump to content

noobh

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

noobh's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thanks a lot bro i spend an hours for searching for this king of function anyway thanks again
  2. ok this is the code <?php $array = array('one'=>'orange','two'=>'banana','three'=>'grapes','four'=>'lemon','five'=>'apple'); sort($array); foreach($array as $key => $val){ echo $key . "=>" . $val . "<br />"; } This is the output the value are already sorted 0=>apple 1=>banana 2=>grapes 3=>lemon 4=>orange But this is the output that i like five=>apple two=>banana three=>grapes four=>lemon one=>orange the value are sorted and the key are still remain!! i mean the key of apple is still five and not become 0 any idea thanks in advance
  3. thanks skunkbad but there are only few predefined constant
  4. any links for the tutorials, documentation about the predefined constants curl php Ive been in php manuals there are a lot of predefined constant but not their documentation nor tutorials i really need help thanks in advance
  5. noobh

    cURL PHP

    i need a sample working script that automatically logged me in, in this site http://www.lec.com/browser_translation.asp I've been in the php curl manual but i already spend 3 hour but still can't figure need help pls.
  6. im new to php <?php $to="myemail@yahoo.com"; $subject="Testing Purposes"; $message="This is my message"; $headers="From: samle@yahoo.com"; mail($to,$subject,$message,$headers); ?> this one goes to the bulk!!! what i want i to send i to inbox any ide thanks in advance
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.