Welcome to our forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.

Forum Statistics

  • Forum Members:
  • Total Threads:
  • Total Posts: 2
There are 1 users currently browsing forums.
General Web Programming This is for more general discussion about web programming or other web programming languages such as XML, Mod_Rewrite, ColdFusion, CGI, VBScript, and Ruby on Rails.

Reply
  #1  
Old 03-11-2010
New Born
 
Join Date: Mar 2010
Posts: 1
Rep Power: 0
Husher is on a distinguished road
Form to complete a HTML (Help!)

Hello YoungCoders guys,
I need to create a form in order to create a system to complete a html. Since, I do not know how to explain it well, beacause I do not know what language could do what I want, I ve created an image explaining it in a more graphical way. What I need is to have like a panel to add the text and save it, so that automatically appears in the other html. Hope you undersatnd what I have to create and sorry for my english, Im learning and Its no good enough.

Thanks so much for the help you can give me!
Reply With Quote
  #2  
Old 03-12-2010
Looking#'s Avatar
Toddler
 
Join Date: Mar 2010
Location: Maryland
Posts: 24
Rep Power: 0
Looking# is on a distinguished road
Re: Form to complete a HTML (Help!)

You're going to want to use PHP. PHP is the easiest language to use to get input from a form and dynamically generate content (generate content based on the form input).

An example of some PHP code:

PHP Code:
<?php
// if the submit button is clicked
if (isset($_POST['submit']))
{
// capture the variables submitted
$name $_POST['name'];
$content $_POST['content'];

// echo them back to the user in a sentence
echo "Hello, $name! $content";
}
?>
There are two great ways to learn PHP. One is to check out the book "Head First PHP & MySQL" from the library, or you can head over to W3Schools Online Web Tutorials and look at their tutorials.

If you need more help, I'm a veritable expert with PHP and I'll be happy to answer any questions.

Good luck
Reply With Quote


Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Beginner HTML Guide. Hybr!d HTML & CSS Articles 2 06-07-2006 02:22 PM
Creating a "Splash" form cipher_nemo General Programming 1 01-31-2006 05:28 AM
html part 3 hayabusa HTML & CSS Articles 0 09-04-2004 11:03 AM
html part 2 hayabusa HTML & CSS Articles 0 09-04-2004 11:02 AM