1-10 of 246 hubssort by Hot Best Latest

Alpho011 profile image92

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 ...

73 comments    google history php
Alpho011 profile image96

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...

12 comments    how to technology internet
Alpho011 profile image82

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.

4 comments    technology radio php
86

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: ...

16 comments    business technology internet
Alpho011 profile image82

MYSQL Sub -queries

What is a Subquery?A subquery is, in essence, a SQL statement that is most often used as part of another SELECT statement.Sub queries are used in order to achieve very complex searches and complex reports. ...

2 comments    technology web software
Alpho011 profile image83

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...

29 comments    technology internet online
92

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.

116 comments    technology internet web
Alpho011 profile image83

Use Windows Login in PHP Applications

As a developer you may run into a situation such as what I had, numerous applications deployed and or created and deployed. With multiple logins for all the apps, we had to find way to integrate all logins...

14 comments    technology internet web
PHP logo69

Best Free PHP Tools & Editors for Every PHP Programmer

PHP (recursive acronym for: PHP Hypertext Preprocessor), is a widely-used, Open Source embedded scripting language. PHP is a server-side scripting language usually written in an HTML context. Unlike an ...

1 comment    php open source apache
Alpho011 profile image80

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
working