1. Is there a way using php to have the page update without completely refreshing?
2. Does php have functions like on.mouse.click, or on.hit.key?
1. Is there a way using php to have the page update without completely refreshing?
2. Does php have functions like on.mouse.click, or on.hit.key?
1. Ajax
2. No
Easiest 70 points you'll make on x10
Feel free to add my reputation by clicking on theif you found my post helpful to you :P
If I am not responding to your PMs, that means I am ignoring you. Take a hint.
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
you can use javascript/ajax in your php website to have the on.click
why?
I was just thinking of some things I could do with it.
Now I have a new question. If I want to insert javascript into my php file, do I just go
echo "javascript code";
or do I have to do something more complex?
You could
Or evenPHP Code:echo "JS";
PHP Code:<?php
//do some stuff here
?>
<script = "javascript">
// Do some JS here
</script>
<?php
//continue processing here
?>
Easiest 70 points you'll make on x10
Feel free to add my reputation by clicking on theif you found my post helpful to you :P
If I am not responding to your PMs, that means I am ignoring you. Take a hint.
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0