1-10 of 246 hubssort by Hot Best Latest

Alpho011 profile image97

Simple Event calendar (PHP, MySQL)

We will create a useful event calendar using PHP and MySQL and a sprinkle of javascript/ CSS for functionality and look. Here is the live example: http://diadde.com/test/cal.php //data base structure ...

80 comments    google history php
alexpapa profile image82

Functional Form To Send Email From Web Page

There are many cases when building a web-page when you have the need to send an email to your own email address, such as the case of a "contact-us" form. These are typically used for requesting information or...

12 comments    php web development mail form
96

A List of Essential Web Design Skills

I've described the key list of web design skills you'll need in order to work as an effective freelance web designer. Or your're writing your website yourself, I give you the best places and ideas from which to start your journey.

120 comments    technology internet web
Alpho011 profile image86

User Authentication using PHP and MySQL and web forms

This is a how to on establishing a login system for a web page or web based application. Source files You've seen them, account signups, email etc, well we are going to show the gist of a PHP login system...

13 comments    how to technology internet
Alpho011 profile image83

PHP and CSS menu

Today we will use PHP to control CSS styles to highlight the tab or hit area of a html menu with styles controlled by CSS. Example page: click here First let's start off with a simple menu, markup: ...

27 comments    how to technology internet
Alpho011 profile image81

PHP form inserts data into CSV file

Today we are going to use a .csv (comma seperated values) file to store values from a online PHP web form. A csv file is file that you can create easily with Microsoft Excel, here are the full and upgrade...

33 comments    technology internet online
Alpho011 profile image80

Web Contact Form (Radio Buttons, Checkboxes)

This small how-to will show you using html, php you are able to setup, validate and send an email from your web site using radio buttons and checkboxes, and other common html form elements.

7 comments    technology radio php
89

Simple PHP web based address book using MySql

Today we will be creating a web based address book using PHP and MySql, it will be using the $_GET superglobal, as a means of reviewing the database contents. Before we start here are the source files: ...

23 comments    business technology internet
Alpho011 profile image76

Ternary Operator (shortcut for conditional statements)

The Ternary operator in PHP, may be one of the most underutilized operators in PHP. The reason being, probably it seems awkward at first glance. $testVar = (condition) ? true : false; Seems almost cryptic....

2 comments    technology tips php
Alpho011 profile image76

Show Javascript Confirmation Warning before deleting the record in MySQL , PHP and Javascript

We are going to update the address book tutorial in giving you a warning before you delete the record in MySQL. If you missed the address book how to go here. References are found above If not we continue...

5 comments    advice how to technology
working