Hi !
As you can see I am new in this HTML5 world so let me tell you what's goin' on.
I made a "ERP" system for my work, based on html, php and mysql in order to save, delete, show and update my info. Then I see some html5 pages and I found them very interenting and pretty but the thing is, after I use an html template and readin' a couple of manuals ( pdf ) I've got my page and look's a little pretty so far (more practice I need) but I can't make that my inputs get into my DB (Mysql). I am using my php files to connect, but even If I write the code the Chrome browser shows me the code, for example:
<?php
$link = mysql_connect('kauffenheute', 'root', ' ');
if
(!$link) {
die(mysql_error());
}
echo
'Successful connection';
mysql_close($link);
?>
so, Would you please tell me, where can I find some of this info? any help would be perfect.
Thanks!