Search results

  1. B

    How to Use Data Models in php to Add, Update, Delete or Select from database...?

    I have a web site that i develop in core php without using Classes and functions. After adding more and more files and code in my web site as per client requirements, My web site becomes very large. Now its difficult to handle all the code and full web site. I just want not to write all...
  2. B

    Php mail() dose not send mails to yahoo emails please help me on this..?

    this is my code $bcc=implode(", ",$_REQUEST['sentemails']); $body=$_REQUEST['mail_body']; $subject=$_REQUEST['subject']; $from=ADMIN_MAIL; $to=GLOBAL_TO; $headers = "From: \"".TITLE."\"<".$from.">\n"; $headers .= "Reply-To: \"".TITLE."\"<".$from.">\n"; $headers .= "BCC: ".$bcc."\r\n"; $headers...
Back
Top