SlideShare a Scribd company logo
1 of 9
Web designers : Part I


A Healthier Nutrition for Web Development



For your solution we lunch Web Design Delhi, A leading web site designing organization in Delhi. This
organization is full with creativity; it only offers that what the client need.



For a good website companies need better ideas and these are always produced by the organizations
web designer. If you want to have a successful business in web site field, then Web site Delhi is the best
choice for you. This company in Delhi can aid to your goals. You can find the right Web site design of
Delhi by typing your topic on the major search engines like Google, Yahoo and MSN and look for the
website on the top rank and search for the web design companies in Delhi that made them on top and
simply contact the Web Design Delhi in Delhi. This company have the expertise and know how tools in
order for you to be on that position. It will help you to get a better visibility and help you to increase
your organizations web site on profit and success basis. The expertise’s associated with Web Designing
Company Delhi have included external and internal expertise.



Web Design Delhi provide with key word rich contents that can be useful to users and to the search
engines which can lead to traffic and visibility for your website. So these users will become your
customers. Professional Web site organization in Delhi helps your track to maintain the record of your
success, with the help of their years of experience with web designing. You have lot of competitors but
with this web designing in Delhi can provide you the best in all.



Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!


Web designers : End of Part I




A Little Something Extra For Your Clients
As a writer, editor, web designer, forum maven, etc. [boy, I sound multi-talented!] I try to give my clients
a/k/a customers a little something extra whenever or wherever possible. No, not so that they take
advantage of my kindness, rather to show that I go the extra mile for them. Hey, it is a competitive
market out there and I don't want to grow complacent!



So, exactly what am I talking about? Blogs. That's right, I enjoy blogging so much that I have decided to
include a "blog option" as part of my web package for clients [new and existing] who want one during
2006. It doesn't cost me any money for the software, but it will cost me approximately one hour's time
to set up each blog.



How about you? Are you expanding your offerings or are you standing in place? Is there something
extra/special which you can offer to your clients at no cost to them?



If you are thinking of short term gains then you are missing my point. Invest in your clients and they will
return the favor to you in the form of loyalty and increased exposure: happy clients tell other clients of
their good fortune, which is <em>you</em> and what you offer to <i>them</i> -- top notch service!



Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!


Web designers : End of Part II




A login system with PHP and MySQL



Many interactive websites nowadays require a user to log in into the website's system to provide a
customized experience for the user. Once the user has logged in, the website will be able to provide a
presentation that is personalized to the user's preferences.



A basic login system typically contains 3 components which can be created using PHP and MySQL :
Component 1: Allows registration of preferred login Id and password.



This is created in simple HTML form that contains 3 fields and 2 buttons:



1. A preferred login id field



2. A preferred password field



3. A valid email address field



4. A Submit button



5. A Reset button



Lets say the form is coded into a file named register.html. The following HTML code extract is a typical
example. When the user has filled in all the fields and clicks on the submit button, the register.php page
is called for.



[form name="register" method="post" action="register.php"]

 [input name="login id" type="text" value="loginid" size="20"/][br]

 [input name="password" type="text" value="password" size="20"/][br]

 [input name="email" type="text" value="email" size="50"/][br]

 [input type="submit" name="submit" value="submit"/]

 [input type="reset" name="reset" value="reset"/]

[/form]
The following code extract can also be used as part of register.php to process the registration. The code
connects to the MySQL database and inserts a line of data into the table used to store the registration
information.



@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");

@mysql_select_db("tbl_login") or die("Cannot select DB!");

$sql="INSERT INTO login_tbl (loginid, password and email) VALUES
(".$loginid.",".$password.",".$email.")";

$r = mysql_query($sql);

if(!$r) {

    $err=mysql_error();

    print $err;

    exit();

}



The code extract assumes that the MySQL table that is used to store the registration data is named
tbl_login and contains 3 fields - the loginid, password and email fields. The values of the $loginid,
$password and $email variables are passed in from the form in register.html using the post method.




Component 2: Verification and authentication of the user.



In this the HTML form typically contains 2 fields and 2 buttons:



1. A login id field



2. A password field
3. A Submit button



4. A Reset button



Assume that such a form is coded into a file named authenticate.html. The following HTML code extract
is a typical example. When the user has filled in all the fields, the authenticate.php page is called when
the user clicks on the Submit button.



[form name="authenticate" method="post" action="authenticate.php"]

 [input name="login id" type="text" value="loginid" size="20"/][br]

 [input name="password" type="text" value="password" size="20"/][br]

 [input type="submit" name="submit" value="submit"/]

 [input type="reset" name="reset" value="reset"/]

[/form]



The following code extract can be used as part of authenticate.php to process the login request. It
connects to the MySQL database and queries the table used to store the registration information.



@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");

@mysql_select_db("tbl_login") or die("Cannot select DB!");

$sql="SELECT loginid FROM login_tbl WHERE loginid='".$loginid."' and password='".$password."'";

$r = mysql_query($sql);

if(!$r) {

 $err=mysql_error();

 print $err;

 exit();
}

if(mysql_affected_rows()==0){

    print "no such login in the system. please try again.";

    exit();

}

else{

    print "successfully logged into system.";

    //proceed to perform website's functionality - e.g. present information to the user

}



As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration
data is named tbl_login and contains 3 fields - the loginid, password and email fields. The values of the
$loginid and $password variables are passed in from the form in authenticate.html using the post
method.




Component 3: When the user forgets his logion password this 3rd component sends his password to
the users registered email address.



The HTML form typically contains 1 field and 2 buttons:



              • A login id field

              • A Submit button

    • A Reset button



Assume that such a form is coded into a file named forgot.html. The following HTML code excerpt is a
typical example. When the user has filled in all the fields, the forgot.php page is called when the user
clicks on the Submit button.
[form name="forgot" method="post" action="forgot.php"]

    [input name="login id" type="text" value="loginid" size="20"/][br]

    [input type="submit" name="submit" value="submit"/]

    [input type="reset" name="reset" value="reset"/]

[/form]



The following code excerpt can be used as part of forgot.php to process the login request. It connects to
the MySQL database and queries the table used to store the registration information.



@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");

@mysql_select_db("tbl_login") or die("Cannot select DB!");

$sql="SELECT password, email FROM login_tbl WHERE loginid='".$loginid."'";

$r = mysql_query($sql);

if(!$r) {

    $err=mysql_error();

    print $err;

    exit();

}

if(mysql_affected_rows()==0){

    print "no such login in the system. please try again.";

    exit();

}

else {

    $row=mysql_fetch_array($r);

    $password=$row["password"];
$email=$row["email"];



    $subject="your password";

    $header="from:you@yourdomain.com";

    $content="your password is ".$password;

    mail($email, $subject, $row, $header);



    print "An email containing the password has been sent to you";

}



As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration
data is named tbl_login and contains 3 fields - the loginid, password and email fields. The value of the
$loginid variable is passed from the form in forgot.html using the post method.




This is how a basic login system can be created. The software developer can include additional tools like
password encryption, access to the user profile in case they wish to edit their profile etc.



This article has been compiled by the content development team at Pegasus InfoCorp which pulls
subject matter specialists from different work domains. They can be contacted through the Pegasus
InfoCorp website at info@pegasusinfocorp.com. Pegasus InfoCorp is an India based web design, web
development and online/offline software development company. Please visit
http://www.pegasusinfocorp.com to read more articles and know more about us!



Other companies and organizations are welcome to reprint this article on their websites provided the
following conditions are met.

&#61607;          The article is not changed in any manner

&#61607;          The article is copied as is in its entirety (including back links to the Pegasus InfoCorp
website).
&#61607;         The company/ organization reprinting the article agrees to defend, indemnify and hold
harmless Pegasus InfoCorp, its employees, directors, officers, agents, partners and their successors and
assigns from and against any and all liabilities, damages, losses, costs and expenses, including attorney's
fees, caused by or arising out of claims based upon the use of the article, including any claim of libel,
defamation, violation of rights of privacy or publicity, loss of service by subscribers and infringement of
intellectual property or other rights



Hiring a web designer to come up with the custom solution that you need can set you back a few
thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere
pennies with a tool like Breezy Websites. See http://breezywebsites.com for details!




Web designers : End of Part III

More Related Content

Recently uploaded

Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 

Recently uploaded (20)

Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 

Featured

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Featured (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

Web designers

  • 1. Web designers : Part I A Healthier Nutrition for Web Development For your solution we lunch Web Design Delhi, A leading web site designing organization in Delhi. This organization is full with creativity; it only offers that what the client need. For a good website companies need better ideas and these are always produced by the organizations web designer. If you want to have a successful business in web site field, then Web site Delhi is the best choice for you. This company in Delhi can aid to your goals. You can find the right Web site design of Delhi by typing your topic on the major search engines like Google, Yahoo and MSN and look for the website on the top rank and search for the web design companies in Delhi that made them on top and simply contact the Web Design Delhi in Delhi. This company have the expertise and know how tools in order for you to be on that position. It will help you to get a better visibility and help you to increase your organizations web site on profit and success basis. The expertise’s associated with Web Designing Company Delhi have included external and internal expertise. Web Design Delhi provide with key word rich contents that can be useful to users and to the search engines which can lead to traffic and visibility for your website. So these users will become your customers. Professional Web site organization in Delhi helps your track to maintain the record of your success, with the help of their years of experience with web designing. You have lot of competitors but with this web designing in Delhi can provide you the best in all. Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details! Web designers : End of Part I A Little Something Extra For Your Clients
  • 2. As a writer, editor, web designer, forum maven, etc. [boy, I sound multi-talented!] I try to give my clients a/k/a customers a little something extra whenever or wherever possible. No, not so that they take advantage of my kindness, rather to show that I go the extra mile for them. Hey, it is a competitive market out there and I don't want to grow complacent! So, exactly what am I talking about? Blogs. That's right, I enjoy blogging so much that I have decided to include a "blog option" as part of my web package for clients [new and existing] who want one during 2006. It doesn't cost me any money for the software, but it will cost me approximately one hour's time to set up each blog. How about you? Are you expanding your offerings or are you standing in place? Is there something extra/special which you can offer to your clients at no cost to them? If you are thinking of short term gains then you are missing my point. Invest in your clients and they will return the favor to you in the form of loyalty and increased exposure: happy clients tell other clients of their good fortune, which is <em>you</em> and what you offer to <i>them</i> -- top notch service! Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details! Web designers : End of Part II A login system with PHP and MySQL Many interactive websites nowadays require a user to log in into the website's system to provide a customized experience for the user. Once the user has logged in, the website will be able to provide a presentation that is personalized to the user's preferences. A basic login system typically contains 3 components which can be created using PHP and MySQL :
  • 3. Component 1: Allows registration of preferred login Id and password. This is created in simple HTML form that contains 3 fields and 2 buttons: 1. A preferred login id field 2. A preferred password field 3. A valid email address field 4. A Submit button 5. A Reset button Lets say the form is coded into a file named register.html. The following HTML code extract is a typical example. When the user has filled in all the fields and clicks on the submit button, the register.php page is called for. [form name="register" method="post" action="register.php"] [input name="login id" type="text" value="loginid" size="20"/][br] [input name="password" type="text" value="password" size="20"/][br] [input name="email" type="text" value="email" size="50"/][br] [input type="submit" name="submit" value="submit"/] [input type="reset" name="reset" value="reset"/] [/form]
  • 4. The following code extract can also be used as part of register.php to process the registration. The code connects to the MySQL database and inserts a line of data into the table used to store the registration information. @mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!"); @mysql_select_db("tbl_login") or die("Cannot select DB!"); $sql="INSERT INTO login_tbl (loginid, password and email) VALUES (".$loginid.",".$password.",".$email.")"; $r = mysql_query($sql); if(!$r) { $err=mysql_error(); print $err; exit(); } The code extract assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields - the loginid, password and email fields. The values of the $loginid, $password and $email variables are passed in from the form in register.html using the post method. Component 2: Verification and authentication of the user. In this the HTML form typically contains 2 fields and 2 buttons: 1. A login id field 2. A password field
  • 5. 3. A Submit button 4. A Reset button Assume that such a form is coded into a file named authenticate.html. The following HTML code extract is a typical example. When the user has filled in all the fields, the authenticate.php page is called when the user clicks on the Submit button. [form name="authenticate" method="post" action="authenticate.php"] [input name="login id" type="text" value="loginid" size="20"/][br] [input name="password" type="text" value="password" size="20"/][br] [input type="submit" name="submit" value="submit"/] [input type="reset" name="reset" value="reset"/] [/form] The following code extract can be used as part of authenticate.php to process the login request. It connects to the MySQL database and queries the table used to store the registration information. @mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!"); @mysql_select_db("tbl_login") or die("Cannot select DB!"); $sql="SELECT loginid FROM login_tbl WHERE loginid='".$loginid."' and password='".$password."'"; $r = mysql_query($sql); if(!$r) { $err=mysql_error(); print $err; exit();
  • 6. } if(mysql_affected_rows()==0){ print "no such login in the system. please try again."; exit(); } else{ print "successfully logged into system."; //proceed to perform website's functionality - e.g. present information to the user } As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields - the loginid, password and email fields. The values of the $loginid and $password variables are passed in from the form in authenticate.html using the post method. Component 3: When the user forgets his logion password this 3rd component sends his password to the users registered email address. The HTML form typically contains 1 field and 2 buttons: • A login id field • A Submit button • A Reset button Assume that such a form is coded into a file named forgot.html. The following HTML code excerpt is a typical example. When the user has filled in all the fields, the forgot.php page is called when the user clicks on the Submit button.
  • 7. [form name="forgot" method="post" action="forgot.php"] [input name="login id" type="text" value="loginid" size="20"/][br] [input type="submit" name="submit" value="submit"/] [input type="reset" name="reset" value="reset"/] [/form] The following code excerpt can be used as part of forgot.php to process the login request. It connects to the MySQL database and queries the table used to store the registration information. @mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!"); @mysql_select_db("tbl_login") or die("Cannot select DB!"); $sql="SELECT password, email FROM login_tbl WHERE loginid='".$loginid."'"; $r = mysql_query($sql); if(!$r) { $err=mysql_error(); print $err; exit(); } if(mysql_affected_rows()==0){ print "no such login in the system. please try again."; exit(); } else { $row=mysql_fetch_array($r); $password=$row["password"];
  • 8. $email=$row["email"]; $subject="your password"; $header="from:you@yourdomain.com"; $content="your password is ".$password; mail($email, $subject, $row, $header); print "An email containing the password has been sent to you"; } As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields - the loginid, password and email fields. The value of the $loginid variable is passed from the form in forgot.html using the post method. This is how a basic login system can be created. The software developer can include additional tools like password encryption, access to the user profile in case they wish to edit their profile etc. This article has been compiled by the content development team at Pegasus InfoCorp which pulls subject matter specialists from different work domains. They can be contacted through the Pegasus InfoCorp website at info@pegasusinfocorp.com. Pegasus InfoCorp is an India based web design, web development and online/offline software development company. Please visit http://www.pegasusinfocorp.com to read more articles and know more about us! Other companies and organizations are welcome to reprint this article on their websites provided the following conditions are met. &#61607; The article is not changed in any manner &#61607; The article is copied as is in its entirety (including back links to the Pegasus InfoCorp website).
  • 9. &#61607; The company/ organization reprinting the article agrees to defend, indemnify and hold harmless Pegasus InfoCorp, its employees, directors, officers, agents, partners and their successors and assigns from and against any and all liabilities, damages, losses, costs and expenses, including attorney's fees, caused by or arising out of claims based upon the use of the article, including any claim of libel, defamation, violation of rights of privacy or publicity, loss of service by subscribers and infringement of intellectual property or other rights Hiring a web designer to come up with the custom solution that you need can set you back a few thousand bucks. But you can do the whole thing yourself and make it drag and drop simple for mere pennies with a tool like Breezy Websites. See http://breezywebsites.com for details! Web designers : End of Part III