Welcome! Log In Create A New Profile

Advanced

HTML crash course

Posted by Mac 
Announcements Last Post
Announcement SoC Curricula 09/30/2017 01:08PM
Announcement Demarcation or scoping of examinations and assessment 02/13/2017 07:59AM
Announcement School of Computing Short Learning Programmes 11/24/2014 08:37AM
Announcement Unisa contact information 07/28/2011 01:28PM
avatar
Mac
HTML crash course
September 02, 2011 10:14AM
It has come to my understanding that we have engineering students with no background in HTML.

The extent to which you use it in this course is minimal. The H&L tutorial and the handbook has many exampels, but you may want to Google for HTML crash course.

This one explains text formatting e.g. change colour of text, aligning text etc
http://makincuteblogs.com/2011/03/beginning-html-crash-course/

Here is help on using forms in PHP http://www.tizag.com/phpT/examples/formex.php

If you want to use PHP code in a form, you can do it in several ways

Language: PHP
<input type="checkbox" value=" <?php echo "$name"; ?> " name="name" /> // echo the $name which you have extracted from the database back into the form. Just echo the variable with PHP   echo "<input type=\"checkbox\" value=\"$name\" name=\"name\" />"; // echo the whole form element with php. Use \ to escape the double quotes, becasue you cannot use double quote inside double quotes   echo "<input type=';checkbox'; value=';$name'; name=';name'; />"; // echo the whole form element with php. Use single quotes. I suggets you use either the top two ways.
Re: HTML crash course
September 06, 2011 05:56PM
Thank you, I did not know about this new way of using forms and PHP.
Thx.
Re: HTML crash course
September 20, 2011 08:20PM
very helpful!
Sorry, only registered users may post in this forum.

Click here to login