PHP-Mysql Form Builder
#1

Title of the project
PHP-Mysql Form Builder

Abstract of the project
This Form Builder is very much useful in administration part of any website where it generates forms and their field validations as per the admin user inputs along with the database to capture the data entered through the forms to the system by the normal users
Reply
#2
[attachment=6761]
Basic commands in MySQL


Create, List, Use and Delete Databases Commands
create database
This command is used to create a Database on the sql server..
Syntax: create [db name];

Eg:
create employees;

show databases
This command id used to list all databases on the sql server.
Syntax: show databases;

use database
This command is used to switch to a database.
Syntax: use [db name];
drop database
This command is used to delete a database.
Syntax: drop [db name];


Creating tables and working with it
create tabe
This command is used to create tables in a database.

Eg:
CREATE TABLE [table name] (firstname VARCHAR(20), middleinitial VARCHAR(3), lastname VARCHAR(35),suffix VARCHAR(3),officeid VARCHAR(10),userid VARCHAR(15),username VARCHAR(8),email VARCHAR(35),phone VARCHAR(25), groups
VARCHAR(15),datestamp DATE,timestamp time,pgpemail VARCHAR(255));

show tables
This command is see all the tables in the database.

describe table
To see database's field formats.
describe [table name];
drop table
To delete a table.
drop table [table name];
Show all data in a table.
SELECT * FROM [table name];
Returns the columns and column information pertaining to the designated table.
show columns from [table name];
Show certain selected rows with the value "something".
SELECT * FROM [table name] WHERE [field name] = "something";
Show all records containing the name "Telson" AND the phone number '2255'.
SELECT * FROM [table name] WHERE name = "Telson" AND phone_number = '2255';
Show all records not containing the name "Telson" AND the phone number '2255' order by the phone_number field.
SELECT * FROM [table name] WHERE name != "Telson" AND phone_number = '2255' order by phone_number;
Show all records starting with the letters 'Tel' AND the phone number '2255'.
SELECT * FROM [table name] WHERE name like "Tel%" AND phone_number = '2255';
Use a regular expression to find records. Use "REGEXP BINARY" to force case-sensitivity. This finds any record beginning with a.
SELECT * FROM [table name] WHERE rec RLIKE "^a$";
Show unique records.
SELECT DISTINCT [column name] FROM [table name];
Show selected records sorted in an ascending (asc) or descending (desc).
SELECT [column1],[column2] FROM [table name] ORDER BY [column2] DESC;
Return number of rows.
SELECT COUNT(*) FROM [table name];
Sum column.
SELECT SUM(*) FROM [table name];
Join tables on common columns.
select lookup.illustrationid, lookup.personid,person.birthday from lookup left join person on lookup.personid=person.personid=statement to join birthday in person table with primary illustration id;
Reply
#3
Pls can I get a page link to download d php/mysql form builder seminars...Thanks
Reply
#4

to get information about the topic PHP-Mysql Form Builder full report refer the page link bellow

http://studentbank.in/report-php-mysql-form-builder
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: lpc2148full form, project model builder complete modelxls, php elseif, www samgra portel id form com, ststebankofindia com form, dictionary for scrabble word builder, online examination system in php and mysql,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  SQL Query Builder seminar details 0 898 09-06-2012, 04:44 PM
Last Post: seminar details
  PHP MySQL Functions project uploader 0 953 02-03-2012, 02:54 PM
Last Post: project uploader
  PHP TECHNOLOGY seminar addict 0 684 18-01-2012, 03:18 PM
Last Post: seminar addict
  The History of PHP project report helper 1 1,465 29-10-2010, 02:32 PM
Last Post: project report helper
  Building a Database-Driven Web Site Using PHP and MySQL project report helper 0 1,311 19-10-2010, 03:16 PM
Last Post: project report helper

Forum Jump: