Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Basic in Html
#11
well what i meant was is there a script call like js (ie: <script name="text/javascipt">) only calling basic
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#12
No. Sorry, but most web browsers only support Javascript

Microsoft Internet Explorer supports something close called "vbscript", but in all honesty, I wouldn't use it (because it doesn't work on other browsers). Javascript (or ECMAscript) is an easy and great language. It's actually more generous than BASIC itself, because it is weakly typed, can handle missing semicolons, and still supports complex things like function references and objects.

The only part close to C is the syntax, which is easy enough to learn.

Code:
if (x < 4) y = 2; // <- this is easy enough to figure out
while (x < 4) {
     y++ /* so is this */
}
function x(y, z) {
     return "hi"  // so is this
}
Reply
#13
what about running exe's on your websites?
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#14
Xitami is a server that runs .exe files. Apache, to my knowledge, does not support it, but I could be wrong. But unless you are on a dedicated host or your own computer, I wouldn't count on it.

You're better off using php or perl anyways.
Reply
#15
what do you want to do
Reply
#16
oh i was just wonderin if you could do it
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)