Start a conversation

PHP 5.x Script Code Sample

  • PHP code to set expiration for the index page

    PHP language is an open source web scripting language which is included within HTML tags to implement any logic. And Due to popularity of PHP language many web hosting providers have started deploying...

  • Build seven good object-oriented habits in PHP

    Summary: With PHP's object-oriented (OO) language features, if you aren't already creating your applications with OO principles in mind, these seven habits will help you get started in the transition ...

  • ASP.NET sample send mail code

    Using System.Net.Mail; ===================== MailMessage mailMessage = new MailMessage(); mailMessage.From = new MailAddress(noreply@yourdomain.com); mailMessage.To.Add(new MailAddress(txtEmail.Text))...