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

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 

Recently uploaded (20)

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 

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