Showing posts with label web development. Show all posts
Showing posts with label web development. Show all posts

Friday, December 27, 2013

NetBeans IDE 7.4 final relese is avaiable for Download

email post

NetBeans IDE 7.4 Download

NetBeans IDE is one of the most powerul tool for developers. The Smarter and Faster Way to Code Quickly and easily develop desktop, mobile and web applications with Java, HTML5, PHP, C/C++ and more. NetBeans IDE is FREE, open source, and has a worldwide community of users and developers.

Tuesday, November 12, 2013

Notepad++ v6.5.1 - Current Version with DIRECT DOWNLOAD link

email post

Notepad++ v6.5.1

The newest build of Notepad Plus Plus is released!

Notepad Plus Plus is not only freeware, but also Opensource! It is one of the best friend for Developers! It support almost all popular computer languages. Such as HTML, C++, PHP, XML and A lot more!. For sure, it supports html5!

We have Direct Download link in this post!

Sunday, November 03, 2013

Tips and Tricks about the text formatting of Google Plus [G+]

email post
Tips and Tricks about the text formatting of Google+ [G+]


It is not on the help search of Google Plus
Here is the "cheat sheet" for text formatting in G+. Here is in details:

Tuesday, October 15, 2013

Cloud Platform Blog: Google App Engine PHP Runtime now available to everyone

email post
At Google I/O earlier this year, we added PHP, the fourth language runtime on Google App Engine in Limited Preview. Today we’re moving to Preview, making PHP on App Engine available for everyone immediately. It is no longer necessary to whitelist your application for deployment.

PHP is one of the world’s most popular programming languages for web programming today. Since the runtime was launched at Google I/O earlier this year, thousands of developers around the world have started using App Engine for PHP, taking advantage App Engine’s legendary scalability and ease of use to run popular PHP products like phpMyAdmin, Drupal andphpBB and frameworks such as Laravel, Silex and CodeIgniter. And as you would expect, you can use Google APIs such as Drive and Google+ on App Engine.

Saturday, October 12, 2013

Jerry Shum Yuk Hoi Personal blogger blog

email post
Jerry Shum Jerry Shum Yuk Hoi Personal blogger blog  is created!
go have a look!

Tuesday, October 08, 2013

NetBeans IDE 7.4 Release Candidate 2 is released! It is html5 Supported.

email post

NetBeans IDE 7.4 Release Candidate 2 Information

NetBeans IDE 7.4 extends the advanced HTML5 development support introduced in NetBeans IDE 7.3 to Java EE and PHP application development, while offering new support for hybrid HTML5 application development on the Android and iOS platforms. In addition, this release provides support for working with preview versions of JDK 8, and includes continued enhancements to JavaFX, C/C++ and more.
NetBeans IDE 7.4 Release Candidate is available in English, Brazilian Portuguese, Japanese, Russian, and Simplified Chinese.

Get NetBeans IDE 7.4 Release Candidate 2

Sunday, February 20, 2011

How to put a PHP Contact from in the website?

email post

PHP Contact Form (Captcha) Installation Instructions

This method is recommended if you want to include the contact form on any existing PHP page of your website (say your existing contact page). The limitation of this method is that you can only display a confirmation message and not redirect to any specific thank you page you may have. If you would rather access the contact form as a separate page, skip to Method II. Compared to this method, Method II is bit easier to implement.
Open contact-config.php and edit the below 3 variables:



$to = 'youremail@email.com';
Change youremail@email.com to the email address where you wish the contact form messages to be delivered.
$subject_prefix = 'My Website Contact';
This will be the prefix that'll be attached to the subject of all contact form email messages.
$where_included = '';
You first have to select an existing PHP page on your website where you'll be displaying the contact form. This is the name of the file where you are including the contact form. If you don't have a PHP page, don't worry. You can simply rename your existing HTML page to PHP page. For example:
contact_us.html > contact_us.php
Note: The file where you are including the contact form and the rest of contact form files must be in the same directory.
So if you are including the contact form in a file called contact_us.php, then the above variable will be:
$where_included = 'contact_us.php';
Now open the file where you are going to include the contact form, in this case contact_us.php, and put the below code to the place where you want the contact form to be displayed:
<?php include "contact.php"; ?>
Then add the below code to the very top of the same file:
<?php session_start(); ?>


That's it! Upload all the files to your server. If you load contact_us.php, the contact form should be visible.
Note: The purpose of $where_included variable is to define the action attribute of the form tag:
<form action="contact_us.php#cform">
Setting this variable incorrectly will display the form but give an error on submitting.

Method II

This method is recommended if you want to access the contact form as a separate page and would like to redirect users to a separate thank you page you may have. You can use this method even if you don't want to redirect users to a separate thank you page.
1. Change:
$use_header_footer = FALSE;
to:
$use_header_footer = TRUE;
2. $thank_you_url = '';
Add the url to your thank you page to the above variable. Example:
$thank_you_url = 'http://www.yourdomain.com/thank_you.html';
3. Change:
$where_included = '';
to:
$where_included = 'contact.php';
Open contact-header.php and contact-footer.php and put your site header and footer information in them.
That's it! Upload all the files to your server. You can now access your contact form directly by visiting:
http://www.yourdomain.com/contact.php
or:
http://www.yourdomain.com/form/contact.php
depending on where you have uploaded the contact form files.

Modifying the Looks of Your Contact Form

To modify the looks of your contact form - background color, border, fonts, etc. please modify the variables under the "COSMETICS" section in contact-config.php file. All the variables are self-explanatory.