Tables were obsolete? And does JavaScript have libraries? Help me catch up!

I need to configure the web interface of the internal printing system, but it has been a decade since I touched HTML. Can anyone recommend some tutorials on writing HTML forms and handling them in PHP? Google only gets eight-year-old resources with large “historical-only” banners on top, perhaps because my entire dictionary is eight years old.

The documentation on php.net is good, but I'm looking for more detailed examples showing how all the parts fit together, preferably with a comment explaining the programmer’s thoughts. I can find functional APIs as well as the next guy.

Edit: In particular, ask about PHP and HTML forms. Sorry if the title is misleading. I just wanted to give some examples of things that I did not know.

+5
source share
5 answers

I found that when I forgot something, Tizag.com will be very useful, a simple tutorial - although this is simple, so I don’t know how useful this is for you, here:http://www.tizag.com/phpT/examples/formex.php , which provides a walk through some explanation of the choices made.

Javascript libraries


php, :

, php/forms ( ), , - - , ymmv .. - xhtml , - (x) html. , , ab- mis-, :

<form action="this_page.php" method="post" enctype="form/multipart">
<p>This is a label <input value="this is the input" /></p>
<p><input type="submit" value="submit" /></p>
</form>

, , , 1. , .


1: , - :
<form action="this_page.php" method="post" enctype="form/multipart">
    <fieldset> // to associate relevant groups of label/input pairs
        <label>This is a label</label> <input value="this is the input" />
    </fieldset>

    <fieldset>
        <input type="submit" value="submit" />
    </fieldset>
</form>
+2

"", (, , , ..). CSS HTML ( div). - .

JS-, . jQuery . - // .

HTML semantic. CSS HTML . , JS ( - " " ) .

PHP . , HTML.

+7

www.alistapart.com. HTML CSS ( javascript ).

nettuts

" ?"

+6

= Google CSS Layouts

JavaScript = Google jQuery

PHP, " Google"

+2

, , , - CSS. , , , CSS -, , - , CSS, , CSS... , :)

In any case, HTML has not changed so much (it grew mainly), everything related to the HML 4.01 specification is good, and some of the browsers already implement HTML 5 material, even if it is not ratified. Any semi-decent HTML editor should see you right, check out the free (express) versions of Visual Studio available from Microsoft.

+1
source

All Articles