11-10-2022, 02:31 AM
So here is what I was considering with the golf scorecard app...
I didn't bother to I.D. the form, just added the most bare bones stuff for the concept sake.
So the 9 named forms fields, which user inputs scores, with a server PERL script could be added up and sent to a database file with the total. How difficult /easy would doing this be with QBJS, and not over the web, just in the local browser. No TCP/IP involved.
Pete
Code: (Select All)
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style>
body {
background-image: url('golf-scorecard.jpg'); width: 100%;
}
div.fixed {
position: fixed;
top: 356px;
left: 156px;
width: 100%;
}
</style>
<title>score-card</title>
</head>
<body>
<div class="fixed">
<form>
<p><span style="font-size: 4px;"><input
maxlength="2" size="1" tabindex="1" name="1"
value=""> <input maxlength="2" size="1"
tabindex="1" name="2" value=""> <input
maxlength="2" size="1" tabindex="1" name="3"
value=""> <input maxlength="2" size="1"
tabindex="1" name="4" value=""> <input
maxlength="2" size="1" tabindex="1" name="5"
value=""> <input maxlength="2" size="1"
tabindex="1" name="6" value=""> <input
maxlength="2" size="1" tabindex="1" name="7"
value=""> <input maxlength="2" size="1"
tabindex="1" name="8" value=""> <input
maxlength="2" size="1" tabindex="1" name="9"
value=""> </span></p>
</form>
</div>
</body>
</html>
I didn't bother to I.D. the form, just added the most bare bones stuff for the concept sake.
So the 9 named forms fields, which user inputs scores, with a server PERL script could be added up and sent to a database file with the total. How difficult /easy would doing this be with QBJS, and not over the web, just in the local browser. No TCP/IP involved.
Pete